Related MCP Server Resources

Explore more AI models, providers, and integration options:

  • Explore AI Models
  • Explore AI Providers
  • Explore MCP Servers
  • LangDB Pricing
  • Documentation
  • AI Industry Blog
  • MCP Model Context Protocol Server
  • Ragie Model Context Protocol Server
  • MCP Server for ArangoDB
  • CouchDB MCP Server
  • AWS Knowledge Base Retrieval MCP Server
Back to MCP Servers
Model Control Protocol Server MCP

Model Control Protocol Server MCP

Public
zueai/create-mcp

Enables the creation and deployment of API-based MCP tools for Cursor Agent using Cloudflare Workers, streamlining development and integration of custom functionalities.

Verified
typescript
0 tools
May 29, 2025
Updated May 30, 2025

create-mcp

A CLI tool that sets up a Model Control Protocol (MCP) server and deploys it to Cloudflare Workers so you can start making new tools for your Cursor Agent in minutes.

Just write TypeScript functions with JSDoc comments to give your agent MCP tools.

Prerequisites

  • Wrangler CLI installed and logged in with your Cloudflare account.
  • Claude Desktop App installed. (This will be removed soon)

Instructions

To scaffold and deploy a new MCP server, just run:

bun create mcp

You can also pass a name directly to the command: bun create mcp --name .

What this CLI does

  • Clones the template worker repository into /
  • Installs dependencies
  • Initializes a Git repository
  • Deploys a Hello World MCP server to your Cloudflare account
  • Adds it to Claude Desktop
  • Copies the MCP server command to your clipboard so you can paste it into Cursor

How to Use

Just add functions to the MyWorker class in src/index.ts. Each function will compile into an MCP tool.

For example:

/** * A warm, friendly greeting from your new Workers MCP server. * @param name {string} the name of the person we are greeting. * @return {string} the contents of our greeting. */ sayHello(name: string) { return `Hello from an MCP Worker, ${name}!`; }
  • The first line is the tool's description.
  • The @param tags are the tool's params, with types and descriptions.
  • The @return tag is the tool's return value, with its type.

Deploying Changes

  1. Redeploy the worker:
bun run deploy
  1. Reload your Cursor window.

Now you can ask your agent to use the new tool!

Why Cloudflare Workers?

Vibes, great DX, and blazing fast deployments.

I don't like running MCP servers locally, and I'm pretty sure you don't either. Now we don't have to run node processes to use simple MCP tools in Cursor that call APIs.

All you have to do is write functions. Put your descriptions and params in JSDoc comments and it just works.

Example Servers made with create-mcp

  • Neon
  • Cloudflare
  • Vercel
  • WorkOS

You can clone and deploy any MCP server made with create-mcp to your own Cloudflare account:

bun create mcp --clone

Contributing

Contributions and feedback are extremely welcome! Please feel free to submit a Pull Request or open an issue!

Acknowledgements

This project would not be possible without workers-mcp made by @geelen

Publicly Shared Threads0

Discover shared experiences

Shared threads will appear here, showcasing real-world applications and insights from the community. Check back soon for updates!

Share your threads to help others
Related MCPs5
  • MCP Model Context Protocol Server
    MCP Model Context Protocol Server

    A server implementation demonstrating how AI models can interact with external tools and services th...

    Added May 30, 2025
  • Ragie Model Context Protocol Server
    Ragie Model Context Protocol Server

    An MCP server that enables AI models to retrieve information from Ragie's knowledge base through a s...

    1 tools
    Added May 30, 2025
  • MCP Server for ArangoDB
    MCP Server for ArangoDB

    A TypeScript-based server to interact with ArangoDB using the Model Context Protocol, enabling datab...

    7 tools
    Added May 30, 2025
  • CouchDB MCP Server
    CouchDB MCP Server

    A TypeScript-based MCP server that enables AI assistants to interact with CouchDB databases through ...

    9 tools
    Added May 30, 2025
  • AWS Knowledge Base Retrieval MCP Server
    AWS Knowledge Base Retrieval MCP Server

    An MCP server that enables users to retrieve information from AWS Knowledge Bases using RAG (Retriev...

    Added May 30, 2025