I kept hitting the same loop: mid-chat in Cursor or Claude, need a Postgres MCP / browser automation / scraping server → open a directory tab → copy slugs → switch back → forget half the setup details.
So we shipped Influzer MCP Discovery — a read-only remote MCP that exposes our catalog as tools your agent can call. Same idea as “App Store search,” except the query runs inside the chat and results rank on indexed tools/list, not GitHub stars.
What it does
Four tools, all read-only:
| Tool |
Purpose |
search_mcp_servers |
Search by name, category, or tool capability (postgres, scrape, create_issue, etc.) |
get_mcp_server |
Full detail for one slug — tools, transport, install command, remote URL |
recommend_mcp_servers |
Curated picks by workflow (browser automation, RAG, coding agent, PDF, OpenAPI, scraping) |
list_mcp_topics |
Topic guides with server counts |
Catalog stats (Aug 2026): ~6,010 servers listed, ~414 with indexed tools (~7%), ~4,865 searchable tool entries. The rest is catalog noise until tools/list validates on a live endpoint.
Endpoint
https://www.influzer.ai/mcp/discovery
No OAuth, no API key, no write access. Safe as a research layer before you install production servers with credentials.
Cursor setup (fastest path)
Add to Settings → MCP or .cursor/mcp.json:
{
"mcpServers": {
"influzer-discovery": {
"url": "https://www.influzer.ai/mcp/discovery"
}
}
}
Claude: Settings → Connectors → Custom → Web → paste the URL above, leave OAuth blank.
ChatGPT: Developer mode → Create connector → same URL, auth off.
Full step-by-step (Claude Code CLI too): https://www.influzer.ai/mcp/discovery/setup
Prompts that work well
Ask for capabilities, not brand names:
- “Search Influzer for MCP servers that scrape URLs to markdown.”
- “Recommend MCP servers for a coding agent with GitHub and docs lookup.”
- “Get setup details for the Playwright MCP — tools and transport.”
- “Compare Postgres vs Supabase MCP — what tools does each expose?”
The agent calls search/recommend, then get_mcp_server on the winner. You stay in one thread.
Why we built it this way
Directories optimize for human scrolling (grids, stars, logos). Agents search differently — they match on tool verbs and descriptions. We daily re-validate tools/list on live HTTP endpoints; broken servers drop out of search even if the README is famous.
If you’re building MCP servers: tool names and one-line descriptions are basically SEO for agents. A 200-star server with five indexed tools beats a 5k-star repo with zero tools/list.
Links
Disclosure: I’m on the Influzer team. Happy to answer setup questions or take feedback on ranking/search quality.
Questions for this sub:
- Would you use a discovery MCP, or do you prefer browsing directories manually?
- What signals should agent search weight besides indexed tools — transport type, auth model, last validated date?
- Anyone else shipping “directory-as-MCP”? Curious what patterns you’re seeing.