/cloudflare-mcp-server
Build MCP (Model Context Protocol) servers on Cloudflare Workers with tools, resources, and prompts.
One skill from claude-skills.
shell
$ npx -y skills add secondsky/claude-skills --skill cloudflare-mcp-server --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/cloudflare-mcp-server
Context preview
The summary Claude sees to decide when to auto-load this skill.
Build MCP (Model Context Protocol) servers on Cloudflare Workers with tools, resources, and prompts.
Stats
Stars194
Forks29
LanguageTypeScript
LicenseMIT
Ships with claude-skills
SKILL.md
cloudflare-mcp-server.SKILL.md
--- name: cloudflare-mcp-server description: Build MCP (Model Context Protocol) servers on Cloudflare Workers with tools, resources, and prompts. license: MIT --- # Cloudflare MCP Server **Last Updated**: 2025-11-21 ## Quick Start ```typescript import { McpServer } from '@modelcontextprotocol/sdk'; const server = new McpServer({ name: 'my-server', version: '1.0.0' }); server.tool('getTodo', async ({ id }) => ({ id, title: 'Task', completed: false })); export default server; ``` ## Core Concepts - **Tools**: Functions AI can call - **Resources**: Data AI can access - **Prompts**: Reusable templates - **Transports**: SSE, HTTP, WebSocket ## Example Tool ```typescript server.tool('searchDocs', { description: 'Search documentation', parameters: { type: 'object',
