mcpcute
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcpcutesearch for tools that can read files"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcpcute
MCP aggregator. Puts multiple MCP servers behind one interface so an agent does not load every nested tool schema at once.
mcpcute exposes 8 tools:
MCP-level operations
list_mcps - List configured MCP servers (name and description)
search_mcps - Search MCP servers by name
get_mcp_details - Details for one MCP, including its tools
Configuration
reload_config - Re-read
mcpcute.config.jsonfrom disk without restarting
Tool-level operations
list_tools - List tools on one MCP
search_tools - Search tools, optionally scoped to one MCP
get_tool_details - Schema and description for a tool, looked up by
tool_nameexecute_tool - Run a tool. Requires
mcp_nameandtool_name. Tool input goes inarguments.
arguments on execute_tool is the JSON object forwarded to the underlying MCP tools/call. Config args is the argv used to spawn a server. They are not the same field.
Each tool description starts with [EXPLICIT ONLY ...]. Agents are told not to call these unless the user mentions mcpcute or asks to manage MCP servers.
Installation
npm install -g mcpcute
# or
bun add -g mcpcute
# or
npx mcpcuteRelated MCP server: mcptool
Configuration
Create a mcpcute.config.json file in your working directory (or set MCPCUTE_CONFIG env var to point to your config file):
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"]
},
"fetch": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-fetch"]
}
}
}args here is spawn argv, the same field Claude Desktop uses. Optional env and description are also supported.
Usage
With Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"mcpcute": {
"command": "npx",
"args": ["-y", "mcpcute"],
"env": {
"MCPCUTE_CONFIG": "/path/to/your/mcpcute.config.json"
}
}
}
}With Claude Code
Add to your Claude Code MCP settings:
{
"mcpServers": {
"mcpcute": {
"command": "npx",
"args": ["-y", "mcpcute"],
"env": {
"MCPCUTE_CONFIG": "/path/to/your/mcpcute.config.json"
}
}
}
}Standalone
# With global install
mcpcute
# Or with npx
npx mcpcute
# With custom config path
MCPCUTE_CONFIG=/path/to/config.json npx mcpcuteHow it works
mcpcute starts without connecting to any MCP server
list_mcpsorsearch_mcpsread the config onlyget_mcp_detailsorlist_toolsconnect on demandsearch_toolsfinds tools across all MCPs or one of themget_tool_detailsreturns the input schema for a tool nameexecute_toolruns it withmcp_name,tool_name, andargumentsreload_configpicks up new or changed servers in the config file
The agent sees these 8 schemas at startup, not every tool on every configured server.
Cache
mcpcute writes the discovered tool list for each MCP to disk so later runs can answer discovery without reconnecting. The cache lives in:
macOS/Linux:
${XDG_CACHE_HOME:-~/.cache}/mcpcuteWindows:
%LOCALAPPDATA%/mcpcute/cache
Override the location with MCPCUTE_CACHE_DIR. A cache entry is dropped when that server's command, args, or env change in mcpcute.config.json.
Workflow examples
Discovering filesystem tools
1. search_mcps("file") → finds "filesystem" MCP
2. list_tools("filesystem") → shows all filesystem tools
3. get_tool_details("read_file") → schema for that tool name
4. execute_tool({ mcp_name: "filesystem", tool_name: "read_file", arguments: { path: "/tmp/example.txt" } }) → run itget_tool_details takes only tool_name. execute_tool always needs mcp_name as well. If two servers expose the same tool name, mcpcute prefixes it (server__tool). Pass that prefixed name to get_tool_details. execute_tool still needs mcp_name plus the original or prefixed tool_name.
Exploring all available MCPs
1. list_mcps() → configured MCPs
2. get_mcp_details("fetch") → tools on that MCP
3. list_tools("fetch") → same list, tools onlyAfter editing the config
1. reload_config() → re-read mcpcute.config.json
2. list_mcps() → confirm the new server is thereWhy mcpcute?
Instant startup. Lazy loading, no wait for every server to connect
Two-level hierarchy. Discover MCPs first, then tools
Reduced context pollution. 8 tool schemas instead of every nested tool
Dynamic tool discovery. Search when needed
Scoped exploration. One MCP at a time
Unified interface. One API for all aggregated tools
Easy configuration. JSON config of MCP servers
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
The OpenRouter for tools. One MCP connection gives any AI agent 254 hosted tools, pay per call.
The Remote MCP server acts as a standardized bridge between LLM applications (like Claude, ChatGPT, and Cursor) and external services, enabling AI agents to access external tools and resources. Its primary capability is providing a centralized search tool to discover other MCP servers and their respective tools. Unlike local implementations, it runs remotely with OAuth authentication and permission controls for security.
Search, vet & assemble MCP servers from your agent: verified tools, risk labels, and trust scores.
Pay-per-use tool marketplace for AI agents. Search, price-check, and call APIs via MCP.
Related MCP Servers
- FlicenseAqualityCmaintenanceAggregates multiple MCP servers into a single gateway with unified top-level tools, reducing LLM context usage and enabling IDE compatibility by consolidating many tools into fewer interface functions.417-
- AlicenseNot gradedqualityNot gradedmaintenanceA drop-in MCP proxy that aggregates multiple backend servers into two meta-tools for efficient tool discovery and execution. It enables AI clients to access hundreds of tools while minimizing context window usage through searchable indexing.1 npm-
- AlicenseBqualityAmaintenanceAn MCP orchestration layer that aggregates multiple MCP servers while exposing only 8 meta-tools, dramatically reducing context window usage, and provides SLOP scripting, event monitoring, and tool customization.10MIT
- AlicenseNot gradedqualityAmaintenanceAggregates tools from multiple upstream MCP servers and exposes them through 4 meta-tools, enabling LLMs to discover and use hundreds of tools without loading all schemas upfront.130 PyPI2Apache 2.0