MCP.so
登录

Remote MCP Server + AutoRAG on Cloudflare

@TradieMate

关于 Remote MCP Server + AutoRAG on Cloudflare

暂无概览

基本信息

分类

云与基础设施

运行时

node

传输方式

stdio

发布者

TradieMate

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "remote-mcp-server-autorag-tradiemate": {
      "command": "npx",
      "args": [
        "nx",
        "dev",
        "remote-mcp-server"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Remote MCP Server + AutoRAG on Cloudflare?

Remote MCP Server + AutoRAG on Cloudflare is a deployable MCP (Model Context Protocol) server that runs on Cloudflare Workers and supports AutoRAG. It is designed for developers who want to build and host remote MCP tools that can be connected to clients like Claude Desktop or the MCP Inspector.

How to use Remote MCP Server + AutoRAG on Cloudflare?

Clone the repository, install dependencies with npm install, and run locally with npx nx dev remote-mcp-server (server at http://localhost:8787). To deploy to Cloudflare, create a KV namespace (npx wrangler kv namespace create OAUTH_KV), add its ID to wrangler.jsonc, and run npm run deploy. Connect clients via SSE by pointing them to the /sse endpoint (e.g., http://localhost:8787/sse locally, or https://<worker>.<account>.workers.dev/sse remotely). For Claude Desktop, configure claude_desktop_config.json with the mcp-remote proxy.

Key features of Remote MCP Server + AutoRAG on Cloudflare

  • Deploy MCP server to Cloudflare Workers
  • SSE transport for remote MCP clients
  • Mock OAuth login for authentication
  • Local development with npx nx dev
  • Works with Claude Desktop via mcp-remote proxy
  • Integrates with MCP Inspector for tool inspection

Use cases of Remote MCP Server + AutoRAG on Cloudflare

  • Build and host custom MCP tools on a global edge network
  • Connect Claude Desktop to remote, server-side tools
  • Prototype and test MCP APIs using the MCP Inspector

FAQ from Remote MCP Server + AutoRAG on Cloudflare

How do I run the server locally?

Clone the repo, run npm install, then npx nx dev remote-mcp-server. The server will be available at http://localhost:8787.

How do I deploy the server to Cloudflare?

Create a KV namespace named OAUTH_KV with npx wrangler kv namespace create OAUTH_KV, add the namespace ID to wrangler.jsonc, and run npm run deploy. The server will be available at a workers.dev URL.

How do I connect Claude Desktop to my remote server?

Edit the Claude Desktop configuration file (claude_desktop_config.json) and add a math MCP server entry using mcp-remote with the remote URL (e.g., https://worker-name.account-name.workers.dev/sse). Restart Claude.

What tools are available?

The README shows a math tool (an add tool) as an example. Other tools can be added by extending the server code.

How do I debug connection issues?

Restart Claude, or test directly from the command line with npx mcp-remote http://localhost:8787/sse. If needed, clear cached auth files with rm -rf ~/.mcp-auth.

评论

云与基础设施 分类下的更多 MCP 服务器