MCP.so
ログイン

Building a Remote MCP Server on Cloudflare (Without Auth)

@elizabethsiegle

Building a Remote MCP Server on Cloudflare (Without Auth) について

Chat w/ Cloudflare D1 Database Remote MCP Server

基本情報

カテゴリ

データベース

ランタイム

node

トランスポート

stdio

公開者

elizabethsiegle

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "calculator": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:8787/sse"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is Building a Remote MCP Server on Cloudflare (Without Auth)?

A remote MCP server that runs on Cloudflare Workers without authentication, enabling AI clients to chat with a D1 SQL database. It is designed for developers who want to give LLMs access to their database through their AI coding IDE.

How to use Building a Remote MCP Server on Cloudflare (Without Auth)?

Deploy via the “Deploy to Workers” button or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless. Then connect it to clients like Windsurf, Cursor, the Cloudflare AI Playground, or Claude Desktop using the deployed URL (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse).

Key features of Building a Remote MCP Server on Cloudflare (Without Auth)

  • Deployable with a single click or CLI command
  • Provides remote MCP access to D1 SQL databases
  • No authentication required for the server
  • Customizable tools defined in src/index.ts using this.server.tool(...)
  • Compatible with Windsurf, Cursor, Claude, and more clients

Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)

  • Give an AI coding IDE direct access to query a database
  • Connect a remote MCP server to the Cloudflare AI Playground
  • Use Claude Desktop with a remote database via the mcp-remote proxy
  • Prototype a serverless MCP tool without managing authentication

FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)

What does this MCP server allow me to do?

It lets you chat with your D1 SQL database from any MCP‑compatible client, such as Windsurf, Cursor, the Workers AI LLM Playground, or Claude.

How do I deploy it?

Click the "Deploy to Workers" button on the README page, or run npm create cloudflare@latest with the provided template.

How can I add my own tools?

Define each tool inside the init() method of src/index.ts using this.server.tool(...).

How do I connect it to Claude Desktop?

Use the mcp-remote proxy and configure Claude Desktop’s MCP servers to point to your deployed SSE endpoint (e.g., http://localhost:8787/sse).

What clients can I use with this server?

It works with the Cloudflare AI Playground, Claude Desktop, and any client that supports MCP, including Windsurf and Cursor.

コメント

「データベース」の他のコンテンツ