Back to MCP directory
publicPublicdnsLocal runtime

mcp-registry-mcp

一个提供搜索和检索官方MCP注册表中服务器信息的MCP服务,支持部署至Cloudflare Workers并可通过远程客户端连接使用。

article

README

🚀 MCP注册表服务器

MCP注册表服务器提供了从官方MCP注册表中搜索和检索信息的工具,帮助用户更便捷地获取所需的MCP服务器信息。

可通过此链接访问:https://registry-mcp.remote-mcp.com

🚀 快速开始

工具介绍

  • ListMCPServers:可从注册表中搜索并列出MCP服务器,还支持可选的过滤功能。
  • GetMCPServer:获取特定MCP服务器的详细信息。

部署步骤

将其部署到Cloudflare Workers,只需执行以下命令:

npm run deploy

此操作会将你的MCP服务器部署到类似 registry-mcp.remote-mcp.com 的URL。

连接到Cloudflare AI Playground

你可以从Cloudflare AI Playground(一个远程MCP客户端)连接到你的MCP服务器,步骤如下:

  1. 访问 https://playground.ai.cloudflare.com/
  2. 输入你已部署的MCP服务器URL(remote-mcp-server-authless.<your-account>.workers.dev/sse
  3. 现在你就可以直接在Playground中使用你的MCP工具啦!

将Claude Desktop连接到你的MCP服务器

你还可以使用 mcp-remote代理 从本地MCP客户端连接到远程MCP服务器。 若要将Claude Desktop连接到你的MCP服务器,请按照 Anthropic的快速入门指南 操作,在Claude Desktop中,前往“设置”>“开发者”>“编辑配置”,并使用以下配置进行更新:

{
  "mcpServers": {
    "calculator": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:8787/sse"  // 或者 remote-mcp-server-authless.your-account.workers.dev/sse
      ]
    }
  }
}

重启Claude后,你应该就能看到这些工具可用了。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client