io.mcp-marketplace/search
Official7 toolsMCP Marketplace
Search and install 4,000+ security-scanned MCP servers from inside any MCP-aware AI client.
Search and discover 4,000+ security-scanned MCP servers from AI clients.
Captured live from the server via tools/list.
search_servers
Search the MCP Marketplace catalog. With a free-text `query` and default `sort`, results are ranked by semantic similarity (gte-small embeddings + cosine similarity), so natural-language queries like 'manage my calendar', 'something to read PDFs', or 'database for my agent' work as well as keyword searches. Each result includes `security_score` (0-10), `risk_level` (low/moderate/high/critical), `critical_findings` (count of severity=critical|high findings), pricing, rating, install count, and a URL. `ranking_mode` in the response indicates whether semantic or keyword matching was used. Before recommending an install, call get_server for full details including every flagged finding — critical_findings > 0 means the server has known security issues you must surface to the user.
Parameters (7)
- querystring
Free-text search across name, tagline, description, tags, and MCP tool names.
- categorystring
Category slug filter. Call list_categories to see valid slugs.
- transportstring
Filter by transport. 'stdio' = local (npm/pip); 'streamable-http' = hosted remote. SSE is not exposed because the catalog doesn't distinguish SSE from streamable-HTTP and filtering on it would always return zero.
- free_onlyboolean
If true, exclude paid servers.
- sortstring
Ranking order. Defaults to 'relevance' when query is set, else 'installs'.
- limitinteger
Max results per page (1-25). Default 10.
- pageinteger
1-indexed page number. Combine with `limit` to paginate past the first window. Defaults to 1.
get_server
Fetch full details for a single MCP server by its slug. Returns description, install commands, security score/risk/findings, ratings, creator info, setup requirements (API keys/credentials the user will need), and the list of MCP tools the server exposes. The `security.critical_findings` array lists every severity=critical|high issue — you MUST show these to the user before recommending they install. Use this as the last step before any install recommendation.
Parameters (1)
- slugstringrequired
Server slug (from search_servers results or the URL: mcp-marketplace.io/server/{slug}).
similar_to
Find MCP servers that are semantically similar to a reference server. Use when a user picked a candidate but wants alternatives — e.g. 'like this but safer', 'like this but free', 'what else does this'. Reuses the catalog's gte-small embeddings: the reference server's embedding is the query vector. Returns servers sorted by cosine similarity (highest first), excluding the reference itself. Each result carries the same security/risk/pricing fields as search_servers so callers can immediately compare on `security_score`, `has_critical_findings`, and pricing.
Parameters (3)
- slugstringrequired
Reference server slug (the one you want similar alternatives to).
- limitinteger
Max similar servers to return (1-10). Default 5.
- free_onlyboolean
If true, exclude paid servers from the comparison set.
recently_added
List the most recently added MCP servers. Use for discovery: 'what's new', 'latest servers', 'servers from this week'. Optionally constrain to the last N days. Ordered by creation date descending. Each result carries the same security/risk/pricing fields as search_servers.
Parameters (3)
- limitinteger
Max servers to return (1-25). Default 10.
- daysinteger
Only include servers created within the last N days (1-365). Omit for no date bound.
- free_onlyboolean
If true, exclude paid servers.
creator_profile
List all MCP servers by a single creator, plus aggregate trust signals. Use to evaluate a publisher holistically: 'do they ship consistently?', 'what's their security track record?', 'are there other servers by the same author?'. Match is case-insensitive on display name. Returns aggregate stats (total servers, avg security score, grade distribution, critical-finding count) plus the per-server list.
Parameters (1)
- creatorstringrequired
Creator display name (case-insensitive) OR GitHub username. From a search_servers result, use the `creator` field.
compare
Compare 2-5 MCP servers side by side on the fields users actually decide on: security score, critical findings, pricing, transport mode, tool count, and install command availability. Use when a user is choosing between candidates from a search. Returns a structured comparison table plus a short per-field summary, so the agent can surface the important contrasts without a second pass over each server.
Parameters (1)
- slugsarrayrequired
Array of 2-5 server slugs to compare.
list_categories
List all MCP Marketplace categories with slug, name, description, and approved server count. Use the returned `slug` as the `category` filter in search_servers.
No parameters.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"search": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp-marketplace.io/api/mcp/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.