Skeet MCP Streamable HTTP Support

Skeet now supports streamable stateless HTTP transport for MCP services, in addition to Server-Sent Events (SSE) and stdio. This enables modern, stateless, and scalable communication for MCP clients that support the Streamable HTTP transport.

Streamable HTTP Endpoint

  • Endpoint: https://mcp.stride.systems/mcp/<apikey>
  • Transport: Streamable HTTP (stateless, no session management)
  • Method: All requests must use POST
  • Client Compatibility: Only works with MCP clients that support stateless streamable HTTP transport (see MCP SSE Support for comparison).

This transport is recommended for new integrations and is designed for high scalability and compatibility with modern HTTP infrastructure.

Comparison: SSE vs. Streamable HTTP

FeatureSSE (Stdio)Streamable HTTP
ConnectionLong-lived, statefulStateless, per-request
MethodGET (event-stream)POST
Browser SupportNativeRequires compatible client
ScalabilityGood, but statefulExcellent, stateless
Endpoint Example/ot/<apikey>/mcp/<apikey>
  • SSE is ideal for real-time browser updates and works with stdio via supergateway.
  • Streamable HTTP is ideal for stateless, scalable, and modern MCP client-server communication.

Configuration Example

Here's a basic example of configuring an MCP service with Streamable HTTP:

mcp.json
{
  "mcpServers": {
    "stride.systems": {
      "url": "https://mcp.stride.systems/mcp/YOUR_SKEET_MCP_KEY"
    }
  }
}

For more details about SSE transport, see the MCP SSE Support page.

Additional Resources

Was this page helpful?