logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

mcp-edge-gateway-stripe

Installs an unauthenticated Model Context Protocol (MCP) backend server utilizing Cloudflare Workers. This setup facilitates connectivity for MCP clients such as the AI Playground interface or the Claude Desktop application, offering streamlined configuration for incorporating custom functionalities and ensuring fluid tool interaction.

Author

mcp-edge-gateway-stripe logo

Brunwo

No License

Quick Info

GitHub GitHub Stars 0
NPM Weekly Downloads 0
Tools 1
Last Updated 2026-02-19

Tags

cloudflarecloudstripeservices brunwocloudflare workersmcp stripe

Establishing an Edge-Deployed MCP Backend (Zero Trust)

This guide details deploying a remote MCP server directly onto Cloudflare Workers, bypassing traditional authentication mechanisms.

Initiation Sequence:

Deploy via Workers

Upon deployment, your endpoint will resemble: remote-mcp-server-authless.<your-account>.workers.dev/sse

Alternatively, utilize the command line interface (CLI) for local initialization that mirrors the remote server structure: bash npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless

Tailoring the MCP Service

To integrate bespoke tools into your MCP backend, you must define them within the init() function located in src/index.ts by invoking this.server.tool(...) for each desired function.

Linking with Cloudflare's AI Interface

Connection to your new MCP backend is possible from the Cloudflare AI Playground, which functions as a remote MCP consumer:

  1. Navigate to https://playground.ai.cloudflare.com/
  2. Input the URL of your deployed service (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse)
  3. Your custom MCP functionalities will instantly be accessible within the playground environment!

Bridging Claude Desktop to the Edge Server

Local MCP clients, specifically Claude Desktop, can interface with your remote worker service via the mcp-remote proxy.

To configure Claude Desktop: consult Anthropic's Quickstart documentation. Subsequently, within Claude Desktop, navigate to Settings > Developer > Edit Config.

Apply this updated configuration structure:

{ "mcpServers": { "calculator": { "command": "npx", "args": [ "mcp-remote", "http://localhost:8787/sse" // Substitute with your actual Worker URL if bypassing local proxy ] } } }

Reload Claude; the newly integrated tools should then appear in the interface.

WIKIPEDIA: Cloud computing is "a paradigm for enabling network access to a scalable and elastic pool of shareable physical or virtual resources with self-service provisioning and administration on-demand," according to ISO. It is commonly referred to as "the cloud".

== Characteristics == In 2011, the National Institute of Standards and Technology (NIST) identified five "essential characteristics" for cloud systems. Below are the exact definitions according to NIST:

On-demand self-service: "A consumer can unilaterally provision computing capabilities, such as server time and network storage, as needed automatically without requiring human interaction with each service provider." Broad network access: "Capabilities are available over the network and accessed through standard mechanisms that promote use by heterogeneous thin or thick client platforms (e.g., mobile phones, tablets, laptops, and workstations)." Resource pooling: " The provider's computing resources are pooled to serve multiple consumers using a multi-tenant model, with different physical and virtual resources dynamically assigned and reassigned according to consumer demand." Rapid elasticity: "Capabilities can be elastically provisioned and released, in some cases automatically, to scale rapidly outward and inward commensurate with demand. To the consumer, the capabilities available for provisioning often appear unlimited and can be appropriated in any quantity at any time." Measured service: "Cloud systems automatically control and optimize resource use by leveraging a metering capability at some level of abstraction appropriate to the type of service (e.g., storage, processing, bandwidth, and active user accounts). Resource usage can be monitored, controlled, and reported, providing transparency for both the provider and consumer of the utilized service. By 2023, the International Organization for Standardization (ISO) had expanded and refined the list.

== History ==

The history of cloud computing extends to the 1960s, with the initial concepts of time-sharing becoming popularized via remote job entry (RJE). The "data center" model, where users submitted jobs to operators to run on mainframes, was predominantly used during this era. This was a time of exploration and experimentation with ways to make large-scale computing power available to more users through time-sharing, optimizing the infrastructure, platform, and applications, and increasing efficiency for end users. The "cloud" metaphor for virtualized services dates to 1994, when it was used by General Magic for the universe of "places" that mobile agents in the Telescript environment could "go". The metaphor is credited to David Hoffman, a General Magic communications specialist, based on its long-standing use in networking and telecom. The expression cloud computing became more widely known in 1996 when Compaq Computer Corporation drew up a business plan for future computing and the Internet. The company's ambition was to superch

See Also

`