home / mcp / project planner mcp server

Project Planner MCP Server

Deploys a remote MCP server on Cloudflare Workers exposing tools via SSE without authentication.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "harshithsoma-projectplannermcp": {
      "url": "https://remote-mcp-server-authless.your-account.workers.dev/sse"
    }
  }
}

You can run a remote MCP server on Cloudflare Workers that exposes tools via SSE without requiring authentication. This enables you to deploy, customize, and connect to your MCP server from multiple clients without complex setup, giving you a practical way to test and use your tools remotely.

How to use

Connect to your remote MCP server from any MCP client to run tools hosted at a Cloudflare endpoint. You have two convenient options to access and use the server:

- Cloudflare AI Playground: open the Playground and enter your deployed server URL to start using the tools directly in a browser-based client.

- Claude Desktop or other local MCP clients: configure your client to point to the remote SSE endpoint so you can run tools from your own environment. You can also use a local proxy configuration to route requests to the remote server.

How to install

Prerequisites you need before installing: Node.js and npm (or another Node package manager). Make sure you have internet access to download dependencies.

Step 1: Create and deploy the remote MCP server to Cloudflare Workers. Run this command to scaffold the MCP server using the Cloudflare template:

npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless
```

Additional sections

Customization: to add your own tools, edit the init() method of src/index.ts and define each tool with this.server.tool(...). This is where you implement the specific capabilities your MCP server will expose to clients.

Connecting to the Cloudflare AI Playground: go to the Playground, paste your deployed MCP server URL (for example, remote-mcp-server-authless.your-account.workers.dev/sse), and start using your tools directly from the playground.

Connecting Claude Desktop or other MCP clients: configure the MCP client to point to your remote SSE endpoint so you can access tools from your local environment. For Claude Desktop, add a configuration similar to this in Settings > Developer > Edit Config, replacing the URL with your remote server:

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

Restart Claude and you should see the tools become available.

Available tools

calculator

An example tool configured to access a remote MCP server via a proxy to the SSE endpoint, demonstrating how a client can interact with the server's available tools.