MCP.so
Sign In
Servers

My Mcp Server Example

@Franco-yvr

Overview

What is My Mcp Server Example?

My Mcp Server Example is a remote Model Context Protocol (MCP) server deployed on Cloudflare Workers with OAuth login. It enables MCP-compatible clients like Claude Desktop and the MCP Inspector to discover and call server-defined tools over SSE transport.

How to use My Mcp Server Example?

Clone the repository, install dependencies with npm install, and run locally with npx nx dev remote-mcp-server. Connect clients by pointing them to the server's SSE endpoint (e.g., http://localhost:8787/sse locally or the workers.dev URL after deployment). Claude Desktop requires a local proxy using npx mcp-remote configured in its settings file.

Features of My Mcp Server Example

  • Deploys on Cloudflare Workers with OAuth login
  • Uses SSE transport for remote MCP connections
  • Works with MCP Inspector and Claude Desktop
  • Requires a local proxy for Claude Desktop integration
  • Supports local development and remote deployment

Use cases of My Mcp Server Example

  • Hosting MCP tools on Cloudflare Workers accessible from any MCP client
  • Developing and testing MCP servers locally before deploying
  • Integrating custom tools into Claude Desktop via remote MCP server

FAQ from My Mcp Server Example

What runtime does My Mcp Server Example require?

The server runs on Cloudflare Workers. Local development requires Node.js and npm; deployment uses wrangler CLI and a KV namespace for OAuth.

How do I connect Claude Desktop to My Mcp Server Example?

Configure Claude Desktop with npx mcp-remote pointing to the server's SSE URL (e.g., https://worker-name.account-name.workers.dev/sse). A browser-based OAuth login flow will open on connection.

What transport protocol does My Mcp Server Example use?

The server uses Server-Sent Events (SSE) as its transport. Clients connect to the server's /sse endpoint.

How is authentication handled?

The server implements OAuth login. During connection, users are prompted through a browser-based login screen before accessing tools.

Are there any known limitations?

In rare cases, clearing the ~/.mcp-auth directory may help resolve connection issues. Restarting Claude Desktop can also resolve unexpected behavior.

More from Other