clickup-mcp-server
by jingwei950
This is an example of deploying a remote MCP server on Cloudflare Workers without authentication. It allows you to connect custom tools to platforms like Cloudflare AI Playground and Claude Desktop.
Last updated: N/A
What is clickup-mcp-server?
This is a remote Model Context Protocol (MCP) server designed to run on Cloudflare Workers. It enables you to expose custom tools and functionalities to platforms like Cloudflare AI Playground and Claude Desktop without requiring authentication.
How to use clickup-mcp-server?
- Deploy the server to Cloudflare Workers using the one-click deploy button or manual deployment steps. 2. Configure API keys and secrets securely using Cloudflare's secret management or local
.dev.vars
for development. 3. Add custom tools to theinit()
method insrc/index.ts
. 4. Connect to the server from Cloudflare AI Playground or Claude Desktop by providing the server URL.
Key features of clickup-mcp-server
Serverless deployment
Authentication-free access
Secure secret management
Custom tool integration
Cloudflare AI Playground compatibility
Claude Desktop compatibility
Use cases of clickup-mcp-server
Integrating custom tools with Cloudflare AI Playground
Connecting custom functionalities to Claude Desktop
Creating a remote MCP server for AI applications
Exposing internal tools to external platforms
Building AI-powered workflows with custom tools
FAQ from clickup-mcp-server
What is an MCP server?
What is an MCP server?
MCP stands for Model Context Protocol. It's a protocol that allows AI models to interact with external tools and services.
Why deploy on Cloudflare Workers?
Why deploy on Cloudflare Workers?
Cloudflare Workers provides a serverless environment that is scalable, cost-effective, and globally distributed.
How do I add custom tools?
How do I add custom tools?
Define your tools inside the init()
method of src/index.ts
using this.server.tool(...)
.
How do I manage API keys?
How do I manage API keys?
Use Cloudflare's secret management for production and .dev.vars
for local development.
How do I connect to Cloudflare AI Playground?
How do I connect to Cloudflare AI Playground?
Go to https://playground.ai.cloudflare.com/ and enter your deployed MCP server URL.