- Home
- MCP servers
- Toolhouse
Toolhouse
- other
3
GitHub Stars
other
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"secretiveshell-mcp-toolhouse": {
"command": "uv",
"args": [
"run",
"mcp-toolhouse"
],
"env": {
"PYTHONUTF8": "1",
"TOOLHOUSE_BUNDLE": "toolhouse-bundle-name",
"TOOLHOUSE_API_KEY": "th-******************_*****_******************"
}
}
}
}You can run MCP Toolhouse as a server to access Toolhouse platform tools directly from your MCP client. This lets you invoke a curated set of tools inside your workflows, enabling automation and rapid tool usage without leaving your MCP environment.
How to use
To use the Toolhouse MCP server, your MCP client connects to the local stdio MCP endpoint provided by the server. You will start the Toolhouse MCP server in the background and then select Toolhouse as a tool source within your MCP client. Once connected, you can request available tools, run them with the appropriate inputs, and receive structured results from the Toolhouse integration.
How to install
Prerequisites you need installed before starting the Toolhouse MCP server:
- Node.js and npm installed on your system
- Python installed if your environment requires it
- A text editor to edit configuration files
Install the Toolhouse MCP server using a local setup or a preconfigured client. The manual setup includes a JSON configuration block you place in your MCP configuration file to enable the Toolhouse MCP server.
Additional sections
Manual setup configuration for the Toolhouse MCP server is shown below. This example starts the Toolhouse MCP server via the uv tool with the mcp-toolhouse entry and includes the required environment variables.
{
"mcpServers": {
"toolhouse_mcp": {
"command": "uv",
"args": ["run", "mcp-toolhouse"],
"env": {
"TOOLHOUSE_API_KEY": "th-******************_*****_******************",
"TOOLHOUSE_BUNDLE": "toolhouse-bundle-name",
"PYTHONUTF8": "1"
}
}
}
}