drio
Open app

create-mcp

Source

CLI to set up and deploy MCP Servers to Cloudflare Workers in seconds. Just write TypeScript functions to make Cursor MCP tools.

Catalog onlyCatalog onlySTDIO

Overview

create-mcp is a command-line interface (CLI) tool designed to set up and deploy Model Control Protocol (MCP) servers to Cloudflare Workers quickly and efficiently. Users can create new tools for their Cursor Agent by writing TypeScript functions.

To use create-mcp, ensure you have the Wrangler CLI installed and logged into your Cloudflare account. Run the command bun create mcp to scaffold a new MCP server, or specify a server name with bun create mcp <server-name>. You can then add functions to the MyWorker class in src/index.ts to create MCP tools.

  • Quick setup and deployment of MCP servers to Cloudflare Workers. - Easy integration with TypeScript functions and JSDoc comments for tool descriptions. - Automatic cloning of template repositories and installation of dependencies. - Supports fast redeployment of changes.
  1. Rapidly developing and deploying custom tools for Cursor Agents.
  2. Simplifying the process of creating and managing MCP servers without local setups.
  3. Enabling developers to leverage Cloudflare's infrastructure for their applications.

Add to your AI client

Use these steps to connect create-mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "create-mcp-zueai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-create-mcp-zueai"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "create-mcp-zueai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-create-mcp-zueai"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "create-mcp-zueai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-create-mcp-zueai"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "create-mcp-zueai": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-create-mcp-zueai"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "create-mcp-zueai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-create-mcp-zueai"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "create-mcp-zueai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-create-mcp-zueai"
      ]
    }
  }
}

FAQ

What are the prerequisites for using create-mcp?

You need to have the Wrangler CLI installed and logged into your Cloudflare account, as well as the Claude Desktop App.

Can I customize the functions in my MCP server?

Yes! You can add any TypeScript functions to the `MyWorker` class to create custom MCP tools.

How do I deploy changes to my MCP server?

Simply run `bun run deploy` to redeploy your worker after making changes.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":1617,"uuid":"33e22562-7b84-44ad-addd-8cbaa82db2b2","name":"create-mcp","title":"create-mcp","description":"CLI to set up and deploy MCP Servers to Cloudflare Workers in seconds. Just write TypeScript functions to make Cursor MCP tools.","avatar_url":"https://avatars.githubusercontent.com/u/173945189?v=4","created_at":"2025-02-23T09:50:13.472Z","updated_at":"2025-03-05T04:21:05.239Z","status":"created","author_name":"zueai","author_avatar_url":"https://avatars.githubusercontent.com/u/173945189?v=4","tags":"cli,ai,mcp,cursor,cloudflare-workers,cursor-ai,model-context-protocol,mcp-server,mcp-client","category":"developer-tools","is_featured":false,"sort":1,"url":"https://github.com/zueai/create-mcp","target":"_self","content":"$29","summary":"$2a","img_url":null,"type":null,"metadata":"{\"star\":\"12\",\"license\":\"MIT license\",\"language\":\"TypeScript\",\"is_official\":false,\"latest_commit_time\":\"2025-02-26 05:52:02\"}","user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]

create-mcp — MCP Registry