Skip to main content
Glama
adw0rd

awesome-mcp-tools-mcp

by adw0rd

awesome-mcp

CLI and MCP stdio bridge for the awesome-mcp.tools catalog of 2,000+ MCP (Model Context Protocol) servers. Search the catalog from your terminal, or wire the hosted MCP server into Claude / Cursor / Codex / Cline / Windsurf.

npm license

# Install
npm install -g awesome-mcp        # or use npx (no install)

# Search the catalog
awesome-mcp search postgres
awesome-mcp top --language Python --limit 10
awesome-mcp trending
awesome-mcp info microsoft-playwright-mcp

# Run as an MCP stdio server (for Claude Desktop & other stdio-only clients)
awesome-mcp-bridge

What this is

Two things in one npm package:

  1. awesome-mcp CLI — search 2,000+ MCP servers from the terminal. Pure node 18+, zero dependencies.

  2. awesome-mcp-bridge — minimal stdio↔Streamable-HTTP MCP proxy. Lets stdio-only clients connect to the hosted MCP server at https://awesome-mcp.tools/mcp. ~100 lines, zero deps.

Both wrap the same backend at awesome-mcp.tools. The catalog is refreshed every 6 hours from the open-source ecosystem.

Related MCP server: MCP Registry Server

CLI usage

awesome-mcp search <query> [options]
awesome-mcp top [options]
awesome-mcp trending [options]
awesome-mcp hot [options]
awesome-mcp info <name> [--json]
awesome-mcp help

Filters: --source --category --tag --language --license
Options: --limit (1-100, default 20) --api <url> --json

Examples:

awesome-mcp search browser --source github --limit 20
awesome-mcp top --language Python
awesome-mcp trending --category "AI Tools"
awesome-mcp info markitdown

MCP bridge usage

The bridge lets stdio-only MCP clients (Claude Desktop, older Cline) talk to the hosted Streamable-HTTP server. It reads JSON-RPC from stdin, forwards to https://awesome-mcp.tools/mcp, streams the response back. Session ID is auto-managed.

Claude Desktop

Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "awesome-mcp-tools": {
      "command": "npx",
      "args": ["-y", "-p", "awesome-mcp", "awesome-mcp-bridge"]
    }
  }
}

Or use Claude Desktop Settings → Connectors → Add custom connector with URL https://awesome-mcp.tools/mcp (newer versions only).

Cursor

~/.cursor/mcp.json — Cursor supports remote URLs natively, no bridge needed:

{
  "mcpServers": {
    "awesome-mcp-tools": {
      "url": "https://awesome-mcp.tools/mcp"
    }
  }
}

Codex CLI

Append to ~/.codex/config.toml:

[mcp_servers.awesome-mcp-tools]
url = "https://awesome-mcp.tools/mcp"

Cline

Cline VS Code panel → cline_mcp_settings.json:

{
  "mcpServers": {
    "awesome-mcp-tools": {
      "type": "streamableHttp",
      "url": "https://awesome-mcp.tools/mcp",
      "disabled": false,
      "autoApprove": []
    }
  }
}

Windsurf

~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "awesome-mcp-tools": {
      "serverUrl": "https://awesome-mcp.tools/mcp"
    }
  }
}

Ready-to-paste copies in examples/.

Tools exposed by the MCP server

Tool

Description

search_servers

Full-text search with filters (category, language, tag, license, source)

get_server

Full details + README for one server by slug

compare_servers

Side-by-side comparison of two servers

list_categories

All categories with server counts

list_languages

Programming languages with counts

list_tags

Tags with counts

list_trending

Top servers by 24-hour star growth

list_hot

Featured / hot servers

Full input/output schemas live at the live tools/list endpoint — see tools.json for an offline snapshot, or server card for transport metadata.

Smoke test

Verify the hosted endpoint without installing anything:

npx @modelcontextprotocol/inspector --transport http https://awesome-mcp.tools/mcp

Or via raw curl:

curl -fsS -X POST https://awesome-mcp.tools/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json,text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"test","version":"1"}}}'

Endpoint

https://awesome-mcp.tools/mcp

Override the bridge target with AWESOME_MCP_URL=https://your-mirror/mcp awesome-mcp-bridge (useful for self-hosting or testing).

What's not in this repo

The hosted server backend (Go API, ingestion crawlers, SSR, OG image generation) is a separate proprietary codebase. This repo contains only:

  • The awesome-mcp CLI source

  • The awesome-mcp-bridge stdio→HTTP proxy source

  • Client config examples

  • Snapshot of the live tools/list response for offline reference

The catalog data served by the backend is open: each server entry preserves its upstream license. The backend code is not.

Tests

npm test

npm test runs the CLI lib tests (6 passing under node 18+). The bridge currently has only a manual smoke test against production (pipe a JSON-RPC initialize into bin/awesome-mcp-bridge.js); mock-based unit tests are on the roadmap for v0.2.1.

Status

Production-ready. awesome-mcp.tools is live, monitored, refreshed every 6 hours. Issues: github.com/adw0rd/awesome-mcp-tools-mcp/issues.

License

MIT.

Available Tools

8 tools
compare_serversA

Compare two MCP servers side-by-side.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugAYesfirst server slug (required)
slugBYessecond server slug (required)

Output Schema

ParametersJSON Schema
NameRequiredDescription
aYes
bYes

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, and the description only says 'Compare two MCP servers side-by-side' without disclosing behavioral traits such as whether the operation is read-only, what happens with invalid slugs, how results are presented, or any side effects. This is a significant gap for a tool with no annotation support.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no filler words. It efficiently conveys the core purpose without extraneous detail, earning full marks for conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has a simple interface (two required parameters) and an output schema exists, which reduces the need to describe return values. However, the description lacks any detail about what the comparison entails or behavioral caveats, and with no annotations, completeness is only adequate, not rich.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for both parameters (slugA and slugB), so the schema already documents the parameter semantics. The description adds no additional meaning beyond noting that two servers are compared, which does not go beyond the schema's information.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool compares two MCP servers, using a specific verb ('compare') and a specific resource ('MCP servers'). It distinguishes itself from sibling tools like get_server (single server) and search_servers (find servers) by explicitly targeting a side-by-side comparison of two named servers.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The context implies usage when the agent wants to compare two specific servers identified by slugs, which is clear. However, there is no explicit guidance on when not to use this tool or which alternatives (e.g., get_server) to choose for a single-server lookup, so it falls short of a full 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_serverA

Get full details (metadata + README) of a single MCP server by its slug.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesserver slug (required)

Output Schema

ParametersJSON Schema
NameRequiredDescription
nameYes
slugYes
urlYes
websiteNo
descriptionNo
starsYes
languageNo
licenseNo
categoryNo
tagsNo
readmeNo

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the transparency burden. It states the tool returns 'metadata + README,' which gives some insight into the return content. However, it does not disclose potential errors (e.g., invalid slug), side effects (none expected), or any special behavior (e.g., caching, rate limits). The description is minimal but not misleading.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that packs the essential information: what it fetches, the scope (single server), and the identifier type (slug). No filler or redundant wording.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple single-parameter fetch tool, the description covers the key inputs and outputs. It specifies the return includes metadata and README, and an output schema exists to provide formal structure. There are no complex side effects or prerequisites to document. The description is complete for this tool's complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% coverage for the single 'slug' parameter, which is described as 'server slug (required)'. The description also mentions 'by its slug,' reinforcing this. Since the schema already fully documents the parameter, the description adds marginal value, aligning with the baseline of 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') and resource ('full details (metadata + README) of a single MCP server') with a clear targeting mechanism ('by its slug'). It clearly distinguishes from sibling tools like list_categories, search_servers, and compare_servers, which serve different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use this tool: when you need full details for a single server and know its slug. However, it does not explicitly mention alternatives or exclusions, such as 'use search_servers if you don't have a slug' or 'use compare_servers for multiple servers.' This is adequate but lacks explicit guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_categoriesA

List all MCP server categories with server counts.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
categoriesYes

TDQS

A3.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states the basic function without mentioning read-only status, pagination, ordering, or other behavioral traits. This is minimal disclosure beyond what the name already implies.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that conveys the action and scope with no wasted words. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a no-parameter list tool with an output schema, the description adequately specifies the scope. It does not clarify whether counts are live or how categories are ordered, but these are minor gaps and the output schema likely covers return value structure. Overall, it is complete enough for the tool's simplicity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the description does not need to explain parameter semantics. The baseline of 4 applies, as there is no param-related burden to compensate for.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('List') and resource ('MCP server categories') and adds output detail ('with server counts'). It clearly distinguishes from sibling list tools like list_languages and list_tags, which cover different facets.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives like list_languages or list_tags. The scope is implied by the description and name, but no exclusions or alternative references are provided. For a simple list operation, this is acceptable but not exceptional.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_hotC

Featured/hot MCP servers.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNomax results, 1-50 (default 20)

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsYes
totalYes

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. The phrase 'Featured/hot MCP servers' hints at curated content but does not explain what 'featured' or 'hot' means, nor does it describe the response format or any side effects. This is too sparse for a tool with no annotation support.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise, but it sacrifices useful context. While brevity is positive, the phrase lacks a verb and leaves the tool's exact behavior ambiguous, making it more under-specified than appropriately concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple (one optional parameter, output schema present), so the description does not need to explain return values. However, the ambiguity with 'list_trending' and the vague 'featured/hot' phrase leave the tool's purpose incompletely defined, preventing a higher score.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema fully covers the only parameter 'limit' with a clear description (max results, 1-50, default 20), achieving 100% schema_description_coverage. Since the schema does the heavy lifting, the description adds no additional parameter semantics, earning the baseline score of 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly indicates this tool returns featured/hot MCP servers, aligning with the 'list' prefix in the name. However, it does not differentiate from the sibling tool 'list_trending', which may overlap in meaning, so it misses the distinction that would earn a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives like 'list_trending' or 'search_servers'. The presence of similar sibling tools makes this omission a notable gap.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_languagesA

List programming languages of MCP servers with counts.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
languagesYes

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It clarifies the scope ('of MCP servers') and indicates the output includes counts, but does not disclose any potential limitations or side effects. For a simple list operation this is adequate, though minimal.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence that is front-loaded with the key verb and resource. Every word adds value, with no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, has no parameters, and an output schema exists. The description fully conveys the purpose and scope. No additional context is necessary.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool accepts zero parameters, and the schema coverage is 100% (empty object). Per the rubric, zero parameters warrants a baseline of 4. The description adds no parameter info but none is needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('List') and resource ('programming languages of MCP servers') with a clear output detail ('with counts'). It distinguishes itself from sibling tools like list_categories and list_tags by focusing on languages.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It does not mention exclusions or alternative tools, leaving the agent to infer usage from the name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_tagsA

List all MCP server tags with counts.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
tagsYes

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses the primary behavior (listing tags with counts) and implies a read-only operation, but it does not provide additional context such as ordering, pagination, or any limitations. The description is adequate but not rich in behavioral detail beyond the obvious.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that is front-loaded and contains no extraneous information. Every word adds substantive meaning, making it highly efficient and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (0 parameters) and the presence of an output schema, the description is complete. It fully communicates what the tool does without needing to explain return values, and there is no missing context that would prevent an agent from selecting or invoking it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so per the rubric the baseline is 4. The description does not need to explain parameters because there are none, and the schema further confirms no inputs.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'List all MCP server tags with counts' uses a specific verb ('List') and clearly identifies the resource ('MCP server tags') and the returned detail ('with counts'). It is distinguishable from sibling tools like list_categories and list_languages, which target different resource types.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when one needs tags with counts, but it does not explicitly state when to use this tool versus alternatives or provide any exclusions. There is no sibling differentiation or guidance on when not to use it, though the purpose is straightforward enough for a simple listing tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_serversA

Search MCP servers in the awesome-mcp.tools catalog. Supports full-text query and filters by category, language, license, and tag.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNofree-text query
categoryNocategory filter
languageNoprogramming language filter
licenseNolicense filter
tagNotag filter
sortNosort mode: stars|trending|hot (default stars)
limitNomax results, 1-50 (default 20)

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsYes
totalYes

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full transparency burden. It discloses the catalog source and mentions full-text query and filters, but does not describe return behavior, defaults for sort/limit, or any external API dependencies. The output schema covers return format, so a 3 is appropriate for the limited extra context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences: the first states the core action and target, the second lists supported filters. No filler, front-loaded, and every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has 7 optional parameters and an output schema. The description covers the main purpose and filter categories, while sort/limit are documented in the schema. It is sufficiently complete for invocation, though it could have explicitly noted that it is a query-based alternative to list tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so parameters are fully documented in the input schema. The description adds only a sentence listing filter types but does not enrich meaning for q, sort, or limit beyond the schema. Baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb-resource combination ('Search MCP servers in the awesome-mcp.tools catalog') and lists filters, clearly distinguishing it from siblings like get_server and compare_servers.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage via the verb 'Search' and filter support, but does not explicitly contrast with sibling list tools (e.g., list_hot, list_trending) or provide when/when-not guidance. Usage is implied rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 8 tool updatesv1.0.0
    • First observedcompare_servers
    • First observedget_server
    • First observedlist_categories
    • First observedlist_hot
    • First observedlist_languages
    • First observedlist_tags
    • First observedlist_trending
    • First observedsearch_servers

TDQS

A3.7/5.0

Scored across 8 tools

Disambiguation5/5

Each tool has a distinct purpose: comparing servers, getting details, listing categories/hot/languages/tags/trending, and searching. No overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case (e.g., compare_servers, list_categories, search_servers). No deviations.

Tool Count5/5

With 8 tools, the set covers browsing, searching, and details for a directory of MCP servers. The count is well-scoped for its purpose.

Completeness4/5

The surface covers browsing by multiple dimensions (categories, languages, tags, trending, hot) and detailed search/filtering. Minor gaps like missing a raw list-all or admin operations, but core exploration is complete.

Maintenance

ActivityStale
ResponsivenessUnresponsive

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables searching and retrieving detailed information about MCP servers from the official MCP registry. Provides tools to list servers with filtering options and get comprehensive details about specific servers.
    37 npm
    3
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Enables discovery and search of available MCP servers through the official MCP Registry. Supports browsing servers with pagination and filtering to find the right MCP tools for your needs.
    1
    19 npm
    4
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables discovery and querying of available MCP servers from the official repository. Supports searching by name, description, features, categories, and provides random server suggestions for exploration.
    24 npm
    3
    MIT