mcp-hub
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseMcp 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
使用方法
- Describe what you want to accomplish
- Provide any required input data or files
- 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"
- 描述你想要完成的任务
- 提供所需的输入数据或文件
- 我会执行相应的操作
示例提示词:
- "访问本地文件系统以读写文档"
- "查询数据库进行数据分析"
- "与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服务器
| Server | Function | Stars |
|---|---|---|
| filesystem | Read/write local files | Official |
| google-drive | Access Google Docs/Sheets | 5k+ |
| puppeteer | Browser automation, PDF gen | 10k+ |
| sqlite | Database queries | Official |
| 服务器 | 功能 | 星标数 |
|---|---|---|
| filesystem | 读写本地文件 | 官方 |
| google-drive | 访问Google Docs/Sheets | 5k+ |
| 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:
- mcp.run - MCP marketplace
- awesome-mcp-servers
- mcp-awesome.com
浏览可用服务器:
- mcp.run - MCP应用市场
- awesome-mcp-servers
- mcp-awesome.com
Using MCP in Skills
在Skills中使用MCP
python
undefinedpython
undefinedMCP 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) - 搜索文件
undefinedundefinedBest Practices
最佳实践
- Only enable MCP servers you need (security)
- Use official servers when available
- Check server permissions before enabling
- Combine multiple servers for complex workflows
- 仅启用你需要的MCP服务器(安全考虑)
- 尽可能使用官方服务器
- 启用前检查服务器权限
- 组合多个服务器以实现复杂工作流
Installation
安装
bash
undefinedbash
undefinedInstall required dependencies
安装所需依赖
pip install python-docx openpyxl python-pptx reportlab jinja2
undefinedpip install python-docx openpyxl python-pptx reportlab jinja2
undefined