MCP of MCPs โ automatically discover and configure MCP servers on your machine (remote or local).
After setup, you can usually just say:
โI want to perform . Call the
deep_searchtool and follow the outlined steps.โ
The goal is that you only install this MCP server, and it handles the rest (searching servers, selecting servers, configuring servers, etc.).
Demo video ๐ฅ: https://youtu.be/W4EAmaTTb2A
Choose one of the following:
- Remote (simplest & fastest โก๐จ)
- Local (prebuilt) โ Docker, uvx, or npx
- Local (from source) โ run this repo directly
Use the hosted endpoint (recommended for the simplest setup).
Docs + guided setup: https://mcp.1mcpserver.com/
Add the following entry to your client config file:
- Cursor:
./.cursor/mcp.json - Gemini CLI:
./gemini/settings.json(see Gemini docs) - Claude Desktop:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
- Codex:
- macOS:
~/.codex/config.toml - Windows:
%USERPROFILE%\.codex\config.toml
- macOS:
Remote config (JSON):
{
"mcpServers": {
"1mcpserver": {
"url": "https://mcp.1mcpserver.com/mcp/",
"headers": {
"Accept": "text/event-stream",
"Cache-Control": "no-cache"
}
}
}
}If you already have other servers configured, just merge this entry under mcpServers For example:
{
"mcpServers": {
"1mcpserver": {
"url": "https://mcp.1mcpserver.com/mcp/",
"headers": {
"Accept": "text/event-stream",
"Cache-Control": "no-cache"
}
},
"file-system": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "."]
}
}
}Tip: If your client supports it, move the config file into your home directory to apply globally.
Use this when you want everything local, or when your MCP client only supports STDIO.
Use this if you want an isolated runtime and a single, reproducible command.
docker run --rm -i \
-e DATADIR=/data \
-v "$PWD/db:/data" \
<YOUR_DOCKER_IMAGE_HERE>{
"mcpServers": {
"1mcpserver": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e",
"DATADIR=/data",
"-v",
"${PWD}/db:/data",
"<YOUR_DOCKER_IMAGE_HERE>"
]
}
}
}Use this if you publish the server as a Python package and want a one-liner.
uvx <YOUR_PACKAGE_NAME> --local{
"mcpServers": {
"1mcpserver": {
"command": "uvx",
"args": ["<YOUR_PACKAGE_NAME>", "--local"]
}
}
}Use this if you publish a Node wrapper / launcher and want a one-liner.
npx -y <YOUR_NPM_PACKAGE_NAME>{
"mcpServers": {
"1mcpserver": {
"command": "npx",
"args": ["-y", "<YOUR_NPM_PACKAGE_NAME>"]
}
}
}Clone this repo and run directly.
git clone https://github.com/particlefuture/MCPDiscovery.git
cd MCPDiscovery
uv sync
uv run server.py --local{
"mcpServers": {
"1mcpserver": {
"command": "/path/to/uv",
"args": [
"--directory",
"<PATH_TO_CLONED_REPO>",
"run",
"server.py",
"--local"
]
}
}
}If your client supports remote
urlservers, you can use the Remote setup instead.
If you want your LLM to have file-system access, add an MCP filesystem server and point it at the directory you want to allow:
{
"mcpServers": {
"file-system": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "~/"]
}
}
}There are two search modes:
For explicit requests like: โI want an MCP server that handles payments.โ
Returns a shortlist of relevant MCP servers.
For higher-level or complex goals like: โBuild a website that analyzes other websites.โ
The LLM breaks the goal into components/steps, finds MCP servers for each part, and if something is missing, it asks whether to:
- ignore that part,
- break it down further, or
- implement it ourselves.
Deep Search stages:
- Planning โ identify servers, keys, and config changes
- Testing โ verify servers (via
test_server_template_code) - Acting โ execute the workflow using the configured servers
- July 31 2025: Upgrade to 0.2.0. Added agentic planning.
- Dec 12 2025: Support for Gemini + Codex
- Dec 13 2025: Easier local setup with docker, npm, and uvx.ย
- Better demo videos (new domain, narrated walkthrough)
- Model Context Communication Protocol (MCCP): standard server-to-server messaging
- Avoid calling tools with an
internal_prefix unless instructed - Improve MCP server database schema: server, description, url, config json, extra setup (docker/api key/etc)
Data sources:
- wong2/awesome-mcp-servers
- metorial/mcp-containers
- punkpeye/awesome-mcp-servers
- modelcontextprotocol/servers
Published to:
- If using a venv and you get
ModuleNotFoundErroreven after installing: delete the venv and recreate it.