Toolhouse MCP Server
未知
简介
Toolhouse MCP 服务器允许你将 MCP 客户端(如 Claude 桌面应用)连接到 Toolhouse 的工具库,通过 模型上下文协议(MCP) 增强 LLM 应用程序的功能。
快速配置
1. 准备工作
- 在 Toolhouse 注册账户(免费)
- 从 Toolhouse 仪表板获取 API 密钥
- 创建一个工具包(bundle),如
mcp-toolhouse
,并添加所需工具
2. 设置环境变量
export TOOLHOUSE_API_KEY="your_toolhouse_api_key"
export TOOLHOUSE_BUNDLE_NAME="your_bundle_name"
3. 配置客户端
Claude 桌面应用配置
在以下位置找到配置文件:
- MacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%/Claude/claude_desktop_config.json
使用 UVX:
{
"mcpServers": {
"mcp-server-toolhouse": {
"command": "uvx",
"args": ["mcp_server_toolhouse"],
"env": {
"TOOLHOUSE_API_KEY": "your_toolhouse_api_key",
"TOOLHOUSE_BUNDLE_NAME": "a_bundle_name"
}
}
}
}
使用 UV:
{
"mcpServers": {
"mcp-server-toolhouse": {
"command": "uv",
"args": [
"--directory",
"/path/to/this/folder/mcp-server-toolhouse",
"run",
"mcp_server_toolhouse"
],
"env": {
"TOOLHOUSE_API_KEY": "your_toolhouse_api_key",
"TOOLHOUSE_BUNDLE_NAME": "a_bundle_name"
}
}
}
}
4. 本地运行(可选)
git clone https://github.com/toolhouse-community/mcp-server-toolhouse.git
然后根据上面的配置修改客户端设置。
调试
使用 MCP Inspector 进行调试:
npx @modelcontextprotocol/inspector uv --directory /path/to/toolhouse_mcp run toolhouse-mcp
支持
如果配置客户端时遇到问题,请在 GitHub 仓库中提交 issue。