modelscope·@getfounded/mcp-tool-kit
一个用于Claude AI助手的模块化服务器实现,集成了工具,使Claude能够执行操作并访问外部资源,如文件系统、网络搜索、浏览器自动化、金融数据和文档生成。
一个用于构建高精度垂直AI代理的模块化服务器实现。旨在用于构建高精度垂直AI代理,但也可以部署以获得通用工具功能。
使用的代码比单独使用Python MCP SDK少>=50%。
以下是一个具体的Claude调用垂直代理的例子:
User: "I need a comprehensive analysis of the electric vehicle market for a presentation tomorrow."
Claude: [recognizes this requires multiple tools and domain expertise]
Claude: "I'll help you with that comprehensive EV market analysis. I'll need to gather the latest market data, news, and trends. This will take a moment..."
[Behind the scenes, Claude calls a MarketAnalysisAgent]
Claude -> MarketAnalysisAgent.analyze_market(
sector="electric vehicles",
include_news=True,
include_market_data=True,
create_presentation=True
)
[The agent orchestrates multiple tool calls using your toolkit]
- news_search for recent EV news
- brave_web_search for market data
- sequential_thinking for analysis
- write_file to save the report
- ppt_create_presentation to generate slides
[Agent returns results to Claude]
Claude: "I've analyzed the electric vehicle market for you. Here are the key findings:
1. Tesla continues to lead with 65% market share in North America
2. BYD has overtaken VW in global sales volume
3. Battery technology breakthroughs are accelerating adoption
I've also created a presentation with detailed charts and data. You can find it saved as 'EV_Market_Analysis.pptx' in your working directory."
MCP统一服务器为Claude提供了一个与各种外部系统和工具交互的统一接口,包括:

注意:确保您已下载git (https://git-scm.com/downloads) 和 Docker (https://www.docker.com/products/docker-desktop/) 并且它们正在运行。您还必须确保git可执行文件已添加到路径中(本README末尾有说明)。
clone https://github.com/getfounded/mcp-tool-kit.git
cd mcp-tool-kit
docker-compose up
选项2 - 直接使用Docker命令:
docker run -p 8000:8000 -v ~/documents:/app/documents getfounded/mcp-tool-kit:latest
该仓库包含一个示例Claude桌面配置文件 (claude_desktop_config.json),您可以使用它:
{
"mcpServers": {
"unified": {
"command": "docker",
"args": [
"exec",
"-i",
"mcp-tool-kit-mcp-server",
"python",
"-u",
"mcp_unified_server.py"
],
"useStdio": true
}
}
}
如果您在运行 Docker 时遇到错误,很可能是因为 Claude 桌面配置文件中的镜像名称不正确。一个常见的解决方法是使用以下 JSON 进行配置:
{
"mcpServers": {
"unified": {
"command": "docker",
"args": [
"exec",
"-i",
"mcp-tool-kit-mcp-server-1",
"python",
"-u",
"mcp_unified_server.py"
],
"useStdio": true
}
}
}
# Simple installation
pip install mcptoolkit
# Launch the server with default configuration
mcptoolkit-server
本地服务器基本配置:
{
"tools": [
{
"name": "MCP Toolkit",
"url": "http://localhost:8000"
}
],
"settings": {
"allowed_directories": ["~/Documents", "~/Downloads"],
"default_tools": ["MCP Toolkit"]
}
}
您可以在 Claude 桌面应用程序中导入此配置,或者将其作为参考来创建自己的配置。
现在,您可以立即访问强大的功能,包括文件操作、网络搜索、时间工具等——无需任何 API 密钥或复杂的设置。
克隆仓库后,您有两种方法可以配置环境变量:
运行设置脚本,该脚本将引导您完成环境变量的设置:
python setup_env.py
此脚本将在仓库中创建一个包含您的配置的 .env 文件。
或者,您可以在仓库根目录下手动创建一个 .env 文件,并包含以下变量:
# API Keys for external services
BRAVE_API_KEY=your_brave_api_key
NEWS_API_KEY=your_news_api_key
FRED_API_KEY=your_fred_api_key
# Application configuration
STREAMLIT_APPS_DIR=/path/to/streamlit/apps
MCP_FILESYSTEM_DIRS=/path/to/allowed/dir1,/path/to/allowed/dir2
MCP_LOG_LEVEL=info
设置完成后,您可以使用如下提示让 Claude 使用这些工具:
- `read_file`: 读取文件内容
- `read_multiple_files`: 同时读取多个文件
- `write_file`: 创建或覆盖文件
- `edit_file`: 对文件进行基于行的编辑
- `create_directory`: 创建新目录
- `list_directory`: 获取目录内容
- `directory_tree`: 获取递归树视图
- `move_file`: 移动或重命名文件/目录
- `search_files`: 搜索匹配模式的文件
- `get_file_info`: 获取文件元数据
- `list_allowed_directories`: 列出允许访问的目录
- **Browser_Automation:**
- `playwright_launch_browser`: 启动新的浏览器实例
- `playwright_navigate`: 导航到指定 URL
- `playwright_screenshot`: 截图
- `playwright_click`: 点击元素
- `playwright_fill`: 填充输入字段
- `playwright_evaluate`: 执行 JavaScript
- `playwright_get_content`: 获取页面的 HTML 内容
### Agent Tools
- `run_agent`: 使用参数执行已注册的代理
- `list_agents`: 列出所有可用代理及其元数据
### Financial Data Tools
- **Y…
快递100 MCP Server提供快递信息查询、快递运费预估比价、快递时效查询(含发货前时效查询与在途动态时效查询)等功能。
基于Model Context Protocol的原型生成功能服务,专注于HTML代码生成、设计描述生成和HTML导入功能。
一个用于生成思维导图的 MCP (Model Context Protocol) 服务器。 看起来您的请求中没有提供具体的英文技术文档内容以供翻译。如果您能分享更多详细信息或具体段落,我将能够帮助您将其准确地翻译成中文,同时保留代码块、链接、格式结构和专业术语的准确性。请提供需要翻译的具体文本。
一个通过模型上下文协议(Model Context Protocol)提供读取、写入和编辑微软Word(docx)文件工具的服务器,允许进行整篇文档读取、内容创建、目标段落编辑以及文本插入等操作。
该工具通过灵活的思维流程帮助分析问题,这种流程能够适应变化并不断演进。随着认知的深入,每个思维节点都可以对先前结论进行补充、质疑或修正。 适用场景 拆解复杂问题为可执行步骤 需要预留修订空间的设计规划 可能需要方向调整的深度分析 初期范围不明确的探索性问题 需多阶段推理的复合型问题 多步骤关联的任务场景 需过滤干扰信息的决策场景
基于Qwen3推理引擎的股票量化智能体,其详细使用方法可通过MCP平台内置的《查询操作手册》获取。 For detailed usage instructions on the Qwen3-powered quantitative trading agent with advanced reasoning capabilities for stock market analysis, please refer to the MCP Query Cookbook accessible via the platform's built-in documentation system.