mcp-hub

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Mcp Hub Skill

Mcp Hub Skill

Overview

概述

This skill provides access to 1200+ MCP (Model Context Protocol) servers - standardized tools that extend AI capabilities. Connect Claude to filesystems, databases, APIs, and document processing tools.
本Skill可让你访问1200+台MCP(Model Context Protocol)服务器——这些是标准化工具,可扩展AI的能力。将Claude与文件系统、数据库、API和文档处理工具连接起来。

How to Use

使用方法

  1. Describe what you want to accomplish
  2. Provide any required input data or files
  3. I'll execute the appropriate operations
Example prompts:
  • "Access local filesystem to read/write documents"
  • "Query databases for data analysis"
  • "Integrate with GitHub, Slack, Google Drive"
  • "Run document processing tools"
  1. 描述你想要完成的任务
  2. 提供所需的输入数据或文件
  3. 我会执行相应的操作
示例提示词:
  • "访问本地文件系统以读写文档"
  • "查询数据库进行数据分析"
  • "与GitHub、Slack、Google Drive集成"
  • "运行文档处理工具"

Domain Knowledge

领域知识

MCP Architecture

MCP架构

Claude ←→ MCP Server ←→ External Resource
        (Protocol)      (Files, APIs, DBs)
Claude ←→ MCP Server ←→ External Resource
        (Protocol)      (Files, APIs, DBs)

Popular Document MCP Servers

热门文档类MCP服务器

ServerFunctionStars
filesystemRead/write local filesOfficial
google-driveAccess Google Docs/Sheets5k+
puppeteerBrowser automation, PDF gen10k+
sqliteDatabase queriesOfficial
服务器功能星标数
filesystem读写本地文件官方
google-drive访问Google Docs/Sheets5k+
puppeteer浏览器自动化、PDF生成10k+
sqlite数据库查询官方

Configuration Example

配置示例

json
{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/documents"
      ]
    },
    "google-drive": {
      "command": "npx",
      "args": ["-y", "@anthropic/mcp-google-drive"]
    }
  }
}
json
{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/documents"
      ]
    },
    "google-drive": {
      "command": "npx",
      "args": ["-y", "@anthropic/mcp-google-drive"]
    }
  }
}

MCP Tool Discovery

MCP工具发现

Browse available servers:
浏览可用服务器:

Using MCP in Skills

在Skills中使用MCP

python
undefined
python
undefined

MCP tools become available to Claude automatically

MCP工具会自动对Claude可用

Example: filesystem MCP provides these tools:

示例:filesystem MCP提供以下工具:

read_file(path) - Read file contents

read_file(path) - 读取文件内容

write_file(path, content) - Write to file

write_file(path, content) - 写入文件

list_directory(path) - List directory contents

list_directory(path) - 列出目录内容

search_files(query) - Search for files

search_files(query) - 搜索文件

undefined
undefined

Best Practices

最佳实践

  1. Only enable MCP servers you need (security)
  2. Use official servers when available
  3. Check server permissions before enabling
  4. Combine multiple servers for complex workflows
  1. 仅启用你需要的MCP服务器(安全考虑)
  2. 尽可能使用官方服务器
  3. 启用前检查服务器权限
  4. 组合多个服务器以实现复杂工作流

Installation

安装

bash
undefined
bash
undefined

Install required dependencies

安装所需依赖

pip install python-docx openpyxl python-pptx reportlab jinja2
undefined
pip install python-docx openpyxl python-pptx reportlab jinja2
undefined

Resources

资源