Back to MCP directory
publicPublicdnsLocal runtime

toolhouse

一个提供Toolhouse平台工具访问的MCP协议服务器

article

README

🚀 MCP 工具屋

这是一个模型上下文协议(MCP)服务器,可提供来自 Toolhouse 平台的工具访问,为用户带来便捷的工具使用体验。

🚀 快速开始

本 MCP 工具屋能让你轻松访问 Toolhouse 平台的工具,下面为你介绍具体的安装和使用方式。

📦 安装指南

通过 Smithery 安装

若要自动为 Claude 桌面安装 Toolhouse,可使用 Smithery,执行以下命令:

npx -y @smithery/cli install @SecretiveShell/MCP-toolhouse --client claude

手动设置

需将您的配置文件设置如下:

{
    "mcpServers": {
        "MCP-Toolhouse": {
            "command": "uv",
            "args": ["run", "mcp-toolhouse"],
            "env": {
                "TOOLHOUSE_API_KEY": "th-******************_*****_******************",
                "TOOLHOUSE_BUNDLE": "toolhouse-bundle-name",
                "PYTHONUTF8": "1"
            }
        }
    }
}

⚠️ 重要提示

在 Windows 上使用时,Python UTF8 环境变量是某些工具正常运行的必要条件。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client