返回市场
MCP注册服务器

MCP注册服务器

作者:KBB995 星标更新:2025-02-06

项目介绍

MCP 注册表服务器

smithery 徽章

特性

  • MCP 检索器:使用语义搜索检索 MCP 服务器

<a href="https://glama.ai/mcp/servers/8pg7mzcpt8"><img width="380" height="200" src="https://gips2.baidu.com/it/u=2461848575,915834376&fm=3081&app=3081&f=PNG?w=760&h=400" alt="mcp-registry-server MCP 服务器" /></a>

工具

  • retrieve_mcps
    • 对 MCP 注册表执行检索操作。
    • 输入参数:
      • query(字符串):用于检索的查询。

配置

安装指南

通过 Smithery 安装

要通过 Smithery 自动安装 MCP 注册表服务器到 Claude Desktop:

npx -y @smithery/cli install @KBB99/mcp-registry-server --client claude

在 Claude Desktop 上使用

首先构建服务器:

git clone https://github.com/KBB99/mcp-registry-server.git
cd mcp-registry-server
npm install
npm run build

你可以通过运行以下命令确认服务器是否正常工作:

node ./dist/index.js

在你的 claude_desktop_config.json 中添加以下内容:

{
  "mcpServers": {
    "mcp-registry-server": {
      "command": "node",
      "args": [
        "./path/to/build/mcp-registry-server/dist/index.js"
      ]
    }
  }
}

许可证

此 MCP 服务器采用 MIT 许可证。这意味着你可以自由地使用、修改和分发该软件,但需遵守 MIT 许可证中的条款和条件。更多详情,请参阅项目仓库中的 LICENSE 文件。

本 README 假设你的服务器包名为 mcp-server-retriever。如果在你的设置中包名或安装细节不同,请进行相应调整。同时,请确保你的服务器脚本正确构建,并且所有依赖项都在你的 package.json 中妥善管理。