Remote MCP
A local Slack server on every laptop does not scale. Remote MCP is the shared, updated, audited copy.
Local MCP is desktop software. Remote MCP is the same app in the cloud — same buttons, hosted for the team.
Visual Workflows
Start here — scroll inside each diagram frame to explore, then use + / − to zoom up to 200% if needed.
Overview
Scroll inside the frame to explore · use + / − to zoom up to 200%
Scroll inside the frame to explore · use + / − to zoom up to 200%
Client config shape
Scroll inside the frame to explore · use + / − to zoom up to 200%
URL + auth header. No child process on the laptop.
Key Takeaways
- 1.Remote MCP runs on a URL and talks over Streamable HTTP (or SSE) Teams share one server — CRM, wiki, Slack — instead of 40 local copies.
- 2.You must add auth, TLS, and rate limits because it is on the network. Clients store a URL plus headers in mcp.json instead of a command.
- 3.The 2025+ spec prefers Streamable HTTP. Older SSE setups still exist.
- 4.Session reconnect and idle timeouts are your problem now — local stdio did not have them.
Learn elsewhere
- →OAuth details — Authentication
- →stdio vs HTTP comparison — Transport
Real Example
Scenario
The company deploys a Slack MCP server on Cloudflare. Every engineer’s Cursor points at the same URL with their own OAuth token.
What you would do
In Model Context Protocol, apply Remote MCP to this scenario: The company deploys a Slack MCP server on Cloudflare. Identify the inputs, run the technique, validate the output, and note one thing you would monitor in production.
Commands
Commands to Remember
Remote = URL, not a spawned commandStreamable HTTP is the current transportAuth is required on the public internetLocal still wins for private files
Cheat Sheet
Quick recap
quick ref- •Remote MCP = shared HTTP server
- •Auth + TLS + rate limits
- •Update once for the whole team
- •Do not remote your .env files
Common Mistakes
- ✕Exposing a remote server with no auth
- ✕Putting local secrets behind a public URL
- ✕Forgetting timeouts so a hung tool blocks the agent
