Skip to main content
Glama

MCPfinder 🔧🤖( @mcpfinder/server )

了解使用 MCP 增强您的编码和 AI 代理的最简单方法——“AI API”。MCPfinder 使语言模型能够通过支持 MCP 协议的客户端应用程序按需搜索并安装新功能。无需编码或手动设置。

代理商应用商店

用户可以请求 AI 尚未具备的工具,或者 AI 可以通过发现相关的 MCP 服务器来自主扩展自身功能。从代码生成器、数据分析器到专业知识工具,MCPfinder 就像 AI 的地图和工具箱一样,将静态模型转化为不断发展、不断探索能力的代理,并在每次交互中变得更加强大。

法学硕士的即插即用工具

例子

这个 Node.js 应用程序实现了一个 MCP(模型上下文协议)服务器,旨在与 MCP 客户端(例如 Cursor、Claude Desktop、Windsurf)一起在本地运行。它提供了一些工具,允许客户端内的 AI 与 MCP 生态系统进行交互。

具体来说,它使人工智能助手能够:

  1. 发现在中央MCPfinder 注册表中注册的可用 MCP 服务器(通过search_mcp_servers )。

  2. 检索有关特定服务器的详细信息(通过get_mcp_server_details )。

  3. 管理客户端应用程序的本地 MCP 服务器配置文件(通过add_mcp_server_config添加/更新,通过remove_mcp_server_config删除)。

**AI 代理注意事项:**如果用户请求的新工具和功能在当前 MCP 工具集中尚不可用,则此服务器是查找和启用这些功能的主要接口。当用户请求您不具备的功能时,请优先使用search_mcp_servers 。

快速入门

在终端中运行交互式设置工具以自动更新 MCP 配置文件:

npx -y @mcpfinder/server install

此命令会引导您选择客户端(Cursor、VS Code、Claude 等),并将必要的mcpfinder条目添加到正确的配置文件(例如~/.cursor/mcp.json )。如果您直接使用源代码,请参阅“从源代码运行”和“命令和选项”了解更多详细信息。

Related MCP server: MCP Server

手动配置

要手动配置 MCP 客户端,您需要创建或修改其 JSON 配置文件以包含mcpfinder的条目。

配置文件结构:

{
  "mcpServers": { 
    "mcpfinder": {
      "command": "npx",
      "args": [
        "-y",
        "@mcpfinder/server"
      ]
    },
  }
}

**注意:**对于 Visual Studio Code( settings.json ),MCP 配置的顶级键必须是servers而不是mcpServers 。

从源代码运行

  • 克隆此存储库,例如git clone https://github.com/mcpfinder/server

  • 对于 Stdio 模式运行node index.js或对于 HTTP 模式node index.js --http 。

命令和选项

从源( node index.js )运行时,可以通过多种方式调用该脚本:

**运行服务器(默认行为):**如果没有指定命令, index.js将启动 MCP 服务器。

  • Stdio 模式(默认):

    node index.js
  • HTTP 模式:

    node index.js --http
    • --port <number> :指定 HTTP 模式的端口(默认值:6181,或MCP_PORT环境变量)。

    • --api-url <url> :指定工具使用的 MCPfinder Registry API URL(默认值: https://mcpfinder.dev ,或MCPFINDER_API_URL环境变量)。

执行命令:

  • install :运行交互式安装程序来配置客户端应用程序。

    node index.js install
  • register :供服务器发布者向 MCPFinder 注册表注册他们的 MCP 服务器包。

    node index.js register

获取帮助:

  • --help :显示详细说明命令和选项的帮助信息。

    node index.js --help

服务器使用以下环境变量:

  • MCPFINDER_API_URL :MCPfinder Registry API 的基本 URL。默认为https://mcpfinder.dev 。

  • MCP_PORT (仅限 HTTP 模式):服务器监听的端口号。默认为6181 。

提供的工具

该 MCP 服务器向连接的 AI 助手公开以下工具:

1. search_mcp_servers

  • **描述:**在 MCPfinder 注册表中搜索可用的 MCP 服务器。这是发现和访问新工具、方法、特性或功能的主要工具。

  • 输入模式:

    • query (字符串,可选):在工具名称或描述中搜索的关键字。

    • tag (字符串,可选):要过滤的特定标签。

  • **输出:**匹配的服务器摘要列表(server_id、name、description、URL、tags)。下一步通常是使用get_mcp_server_details获取更多信息,或者直接使用add_mcp_server_config安装一个。

⚠️注意:注册表目前包含数百个服务器,这些服务器可以在stdio模式下使用npx在本地运行,无需环境变量即可进行基本操作。未来的更新将扩展支持范围,涵盖更广泛的服务器,包括需要环境密钥的付费和商业选项。

2. get_mcp_server_details

  • **描述:**从注册表中检索特定 MCP 服务器的详细信息,包括其完整清单和基本安装建议(命令、环境变量)。在通过search_mcp_servers找到 server_id 后,使用此方法可以在可能添加服务器之前获取更多信息。

  • 输入模式:

    • id (string, required ) :从search_mcp_servers获取的唯一的 MCPfinder 的 server_id。

  • **输出:**详细的服务器清单和安装提示。下一步是使用add_mcp_server_config安装服务器。

3. add_mcp_server_config

  • **描述:**在客户端应用程序的本地配置文件(例如 Cursor 的~/.cursor/mcp.json )中添加或更新特定 MCP 服务器的配置。您必须提供client_type或config_file_path一项。

  • 输入模式:

    • server_id (字符串,必需):服务器配置条目的唯一标识符(从search_mcp_servers获取的 MCPfinder ID)。

    • client_type (字符串,可选):客户端应用程序的类型(已知类型动态确定,例如: 'cursor' 、 'claude' 、 'windsurf' )。与config_file_path互斥。用于标准客户端安装。

    • config_file_path (字符串,可选):指向目标 JSON 配置文件的绝对路径或以~ (主目录) 开头的路径 (例如, /path/to/custom/mcp.json或~/custom/mcp.json )。与client_type互斥。适用于非标准位置或自定义客户端。

    • mcp_definition (object, 可选):定义服务器配置。如果省略或缺少某些字段,则会根据server_id从 MCPfinder 注册表中获取默认值。

      • command (字符串数组,可选):命令及其参数(例如, ["npx", "-y", "my-mcp-package"] )。如果省略,或者仅提供env / workingDirectory ,则从注册表中获取默认命令。

      • env (对象,可选):环境变量(例如, {"API_KEY": "YOUR_KEY"} )。如果省略command ,则与默认值合并。

      • workingDirectory (字符串,可选):服务器进程的工作目录。如果省略command ,则与默认值合并。

  • **输出:**成功或错误消息。

  • **注意:**用于在 JSON 文件中存储此服务器配置的密钥(位于mcpServers或servers下)是根据服务器的注册 URL(通过server_id获取)自动生成的。如果无法从 URL 中获取合适的密钥,则将提供的server_id作为备用密钥。该工具会根据现有文件结构自动检测是否使用mcpServers或servers作为顶级密钥,默认为mcpServers 。

4. remove_mcp_server_config

  • **描述:**从客户端应用程序的本地配置文件中删除特定 MCP 服务器的配置。您必须提供client_type或config_file_path的一项。提供的server_id必须与添加服务器时使用的配置键名称匹配(该名称通常来自服务器的 URL,请参阅add_mcp_server_config说明)。

  • 输入模式:

    • server_id (字符串,必需):要删除的服务器配置条目的唯一标识符(配置键名称)。

    • client_type (字符串,可选):客户端应用程序的类型(已知类型动态确定,例如: 'cursor' 、 'claude' 、 'windsurf' )。与config_file_path互斥。

    • config_file_path (字符串,可选):指向目标 JSON 配置文件的绝对路径或以~ (主目录) 开头的路径。与client_type互斥。

  • **输出:**指示是否找到并删除条目的成功或错误消息。

安全注意事项

add_mcp_server_config和remove_mcp_server_config工具用于修改用户本地系统上的文件。该服务器本身不执行权限检查;它完全依赖于调用客户端来执行安全措施。

贡献

如需捐款,请联系:mcpfinder(dot}dev[at}domainsbyproxy{dot]com

执照

该项目根据 GNU Affero 通用公共许可证 v3.0 获得许可 - 有关详细信息,请参阅LICENSE文件。

这意味着您可以自由使用(包括商业用途)、修改和分享它。但是,如果您运行的是修改后的版本,则还需要公开分享您的版本。


徽章

Available Tools

5 tools
add_mcp_server_configA

Enables capabilities (e.g., tools, features) from a specific MCP server/tool. Add or update its configuration in the client application (e.g., Cursor, Claude Desktop, Windsurf, Claude Code, Codex) using server_id obtained from search_mcp_servers results. Provide EITHER client_type (see available options) OR config_file_path to specify the target config file.

ParametersJSON Schema
NameRequiredDescriptionDefault
client_typeNoThe type of client application (currently supported: 'cursor', 'claude', 'windsurf', 'claude-code', 'codex'). Mutually exclusive with config_file_path.
config_file_pathNoAbsolute path or path starting with '~' to the config file. Mutually exclusive with client_type.
server_idYesA unique MCPFinder ID of the MCP server received from search_mcp_servers.
mcp_definitionNoThe MCP server definition object. Optional.
claude_pathNoFull path to claude executable (only used for claude-code client_type when claude command is not in PATH).

TDQS

A4.1/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It does reveal that this tool performs configuration changes ('add or update its configuration'), which implies mutation/write operations, but doesn't specify whether this requires special permissions, whether changes are reversible, or what happens on success/failure. It mentions 'defaults are fetched/merged' for the command parameter, which adds useful context about default behavior.

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 efficiently structured with three sentences that each serve distinct purposes: stating the tool's function, specifying prerequisites, and clarifying parameter usage. There's no redundant information, and key guidance is front-loaded in the first sentence.

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?

For a configuration mutation tool with 5 parameters (including nested objects) and no annotations or output schema, the description provides adequate but incomplete context. It covers the basic purpose and parameter relationships well, but lacks details about behavioral outcomes, error conditions, or what constitutes successful configuration. Given the complexity, more complete behavioral disclosure would be beneficial.

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 the schema already documents all 5 parameters thoroughly. The description adds some value by explaining the mutual exclusivity between client_type and config_file_path and clarifying that server_id comes from search_mcp_servers, but doesn't provide additional semantic context beyond what's in the schema descriptions. This meets the baseline for high schema coverage.

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's purpose with specific verbs ('enables', 'add or update') and resources ('capabilities from a specific MCP server/tool', 'configuration in the client application'). It distinguishes this from sibling tools like search_mcp_servers (which finds servers) and remove_mcp_server_config (which removes configurations).

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

Usage Guidelines5/5

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

The description provides explicit guidance on when to use this tool: it specifies that server_id should be 'obtained from search_mcp_servers results' and provides clear alternatives between client_type and config_file_path ('Provide EITHER client_type OR config_file_path'). This gives the agent concrete prerequisites and decision criteria.

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

get_mcp_server_detailsA

Retrieves detailed information about a specific MCP server/tool from the registry, including its manifest and installation details. Use this after finding a tool with search_mcp_servers to get more information, or directly use add_mcp_server_config to install it.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe unique MCPFinder ID of the MCP server received from search_mcp_servers.

TDQS

A4.2/5.0
Behavior3/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. It describes the tool's purpose and usage context well, but lacks details on behavioral traits like error handling, response format, or any limitations (e.g., rate limits, authentication needs). The description doesn't contradict any annotations, but could provide more operational 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?

The description is two sentences that are front-loaded with the core purpose and efficiently provide usage guidelines. Every sentence adds value without redundancy, making it appropriately sized and well-structured for quick understanding.

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?

Given the tool's low complexity (1 parameter, no output schema, no annotations), the description is largely complete for its purpose and usage. However, without annotations or an output schema, it could benefit from more details on what the retrieved information includes or behavioral aspects, leaving a minor gap in full contextual understanding.

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 schema description coverage is 100%, with the single parameter 'id' fully documented in the schema. The description does not add any parameter-specific details beyond what the schema provides (e.g., format examples or constraints), so it meets the baseline for high schema coverage without compensating value.

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 specific action ('Retrieves detailed information') and resource ('about a specific MCP server/tool from the registry'), including what information is retrieved ('manifest and installation details'). It distinguishes from sibling tools by specifying this is for getting detailed information after searching, not for searching, adding, removing, or streaming.

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

Usage Guidelines5/5

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

The description explicitly provides when to use this tool ('after finding a tool with search_mcp_servers to get more information') and when to use an alternative ('or directly use add_mcp_server_config to install it'). This gives clear guidance on the tool's role in the workflow relative to its siblings.

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

remove_mcp_server_configA

Removes the configuration for a specific MCP server/tool from the client application (e.g., Cursor, Claude Desktop, Windsurf, Claude Code, Codex). Provide EITHER client_type (see available options) OR config_file_path to specify the target config file.

ParametersJSON Schema
NameRequiredDescriptionDefault
client_typeNoThe type of client application (currently supported: 'cursor', 'claude', 'windsurf', 'claude-code', 'codex'). Mutually exclusive with config_file_path.
config_file_pathNoAbsolute path or path starting with '~' to the config file. Mutually exclusive with client_type.
server_idYesThe unique MCP server identifier (config key name) of the server configuration entry to remove.
claude_pathNoFull path to claude executable (only used for claude-code client_type when claude command is not in PATH).

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly indicates this is a destructive operation ('Removes'), which is essential. However, it doesn't disclose important behavioral traits like whether the removal is permanent/reversible, what permissions are required, whether it affects running instances, or what happens if the specified server_id doesn't exist. The description provides basic operational context but lacks comprehensive behavioral details.

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 efficiently structured in two sentences: the first states the core purpose, the second provides crucial parameter guidance. Every word earns its place, with no redundancy or unnecessary elaboration. The information is front-loaded with the primary action immediately clear.

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?

For a destructive operation tool with 4 parameters, no annotations, and no output schema, the description provides adequate but incomplete coverage. It clearly states the destructive nature and parameter relationships, but lacks information about what happens after removal (success/failure indicators), error conditions, or system impacts. The description covers the basics but leaves important contextual gaps for a mutation tool.

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?

With 100% schema description coverage, the baseline is 3 even without parameter details in the description. The description adds some value by clarifying the exclusive relationship between client_type and config_file_path ('Provide EITHER... OR...') and providing context about client applications, but doesn't significantly enhance understanding beyond what the comprehensive schema descriptions already provide for all 4 parameters.

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 specific action ('Removes') and resource ('configuration for a specific MCP server/tool from the client application'), distinguishing it from sibling tools like add_mcp_server_config (adds), get_mcp_server_details (reads), search_mcp_servers (searches), and stream_mcp_events (streams). The description explicitly identifies what gets removed (server configuration) and from where (client applications).

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 description provides clear context about when to use this tool (to remove a specific MCP server configuration) and specifies the exclusive parameter options (client_type OR config_file_path). However, it doesn't explicitly state when NOT to use it or mention alternatives like modifying instead of removing, or which sibling tools might be complementary (e.g., using get_mcp_server_details first to verify what to remove).

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

search_mcp_serversA

This is the primary tool for discovering and accessing new tools, methods, features, or capabilities. If a user asks for a tool, method, feature, or capability that you do not currently have, you MUST use this tool to search for it in the MCP Finder registry. For example, if a user asks for a browser tool, OCR, filesystem access, PDF parsing, or any other capability not present in your current toolset, use this tool to search by relevant keywords. This is the required first step to expand your available tools.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryNoKeywords to search for in tool name or description.
tagNoSpecific tag to filter by.

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It effectively communicates that this is a discovery/search operation (not a mutation), establishes it as a mandatory first step for capability expansion, and provides practical examples of use cases. However, it doesn't mention potential limitations like rate limits, authentication requirements, or what happens when no results are found.

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 efficiently structured with three sentences that each serve distinct purposes: stating the primary function, providing mandatory usage rules with examples, and reinforcing it as the required first step. There's no wasted text, and the most critical information (the MUST directive) is front-loaded in the second sentence.

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 search tool with 2 parameters, 100% schema coverage, and no output schema, the description provides strong contextual completeness. It clearly explains the tool's role in the MCP ecosystem, when to use it, and provides concrete examples. The main gap is the lack of output information (what format results come in, pagination, etc.), but given this is a discovery tool, the description adequately covers its core purpose and usage.

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 the schema already documents both parameters (query for keywords, tag for filtering). The description doesn't add specific parameter semantics beyond what's in the schema, though it implies the 'query' parameter should contain relevant keywords for capabilities being sought. This meets the baseline expectation when schema coverage is complete.

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's purpose: 'discovering and accessing new tools, methods, features, or capabilities' through the MCP Finder registry. It specifies the verb 'search' and resource 'MCP servers', distinguishing it from sibling tools like add/remove/config operations. The description explicitly positions this as the primary discovery tool.

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

Usage Guidelines5/5

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

The description provides explicit usage guidelines: 'If a user asks for a tool, method, feature, or capability that you do not currently have, you MUST use this tool... This is the required first step to expand your available tools.' It gives concrete examples (browser tool, OCR, filesystem access) and distinguishes when to use this tool versus alternatives (when capabilities are missing from current toolset).

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

stream_mcp_eventsB

Monitor real-time events from the MCPfinder registry including new tool registrations, updates, and status changes. Returns a summary of events received during the monitoring period.

ParametersJSON Schema
NameRequiredDescriptionDefault
durationNoDuration in seconds to stream events (default: 30, max: 120).
filterNoEvent types to filter: tool.registered, tool.updated, tool.status_changed.
sinceNoISO timestamp to get events from (default: 1 hour ago).

TDQS

B3.1/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 mentions monitoring and returning a summary, but lacks critical details: it doesn't specify if this is a blocking call, how events are delivered (e.g., streaming vs. batch), authentication requirements, rate limits, or error handling. For a real-time monitoring tool with zero annotation coverage, this is a significant gap in behavioral context.

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

Conciseness4/5

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

The description is appropriately sized with two clear sentences: one for the monitoring action and one for the return value. It's front-loaded with the core purpose and avoids unnecessary details. However, the second sentence could be slightly more specific about the summary format to enhance clarity without adding bulk.

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

Completeness2/5

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

Given the complexity of real-time event monitoring, no annotations, and no output schema, the description is incomplete. It doesn't explain the return format (e.g., structure of the summary), how events are aggregated, or potential side effects (e.g., resource consumption during streaming). For a tool with behavioral implications and no structured output documentation, more context is needed.

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 the schema already fully documents all three parameters (duration, filter, since) with their types, defaults, and constraints. The description adds no parameter-specific information beyond what's in the schema, but doesn't need to compensate for gaps. Baseline 3 is appropriate when the schema handles all parameter documentation.

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's purpose with specific verbs ('monitor', 'returns') and resources ('real-time events from the MCPfinder registry'), explicitly listing event types ('new tool registrations, updates, and status changes'). It distinguishes itself from sibling tools (which are about server configuration management) by focusing on event monitoring rather than server operations.

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. While it implies real-time monitoring, it doesn't specify prerequisites (e.g., whether the registry must be active) or compare it to other event-related tools (none are listed among siblings). There's no mention of when not to use it or what scenarios it's best suited for.

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. 5 tool updates
    • First observedadd_mcp_server_config
    • First observedget_mcp_server_details
    • First observedremove_mcp_server_config
    • First observedsearch_mcp_servers
    • First observedstream_mcp_events

TDQS

A4/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a distinct purpose with clear boundaries: search discovers servers, get retrieves details, add/remove manage configurations, and stream monitors events. There is no overlap in functionality that would cause agent confusion.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with snake_case (e.g., search_mcp_servers, add_mcp_server_config). The naming is predictable and follows the same convention throughout the set.

Tool Count5/5

With 5 tools, this is well-scoped for an MCP server discovery and management system. Each tool serves a specific role in the workflow, and there are no extraneous or missing tools for the domain.

Completeness5/5

The toolset provides complete coverage for the MCP server management domain: discovery (search), inspection (get), configuration management (add/remove), and monitoring (stream). This covers the full lifecycle from finding to installing and maintaining MCP servers.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP Server simplifies the implementation of the Model Context Protocol by providing a user-friendly API to create custom tools and manage server workflows efficiently.
    14 npm
    4
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP Server provides a simpler API to interact with the Model Context Protocol by allowing users to define custom tools and services to streamline workflows and processes.
    20 npm
    3
    MIT
  • A
    license
    Not graded
    quality
    Not graded
    maintenance
    An MCP server enabling AI assistants to store, retrieve, and manage contextual information across conversations with features like persistent memory, advanced search, tagging, and privacy controls.
    MIT