Skip to content

Platform Compatibility

Crow uses the open Model Context Protocol (MCP) standard. Any MCP-compatible AI client can connect to Crow's gateway — no vendor-specific extensions are used.

Compatibility Matrix

PlatformTransportAuthSetup DifficultyStatus
Claude Web & MobileStreamable HTTPOAuth 2.1EasyFully tested
Claude DesktopstdioN/A (local)EasyFully tested
Claude Code (CLI)stdio / HTTPOAuth 2.1EasyFully tested
ChatGPTSSEOAuth 2.1EasyCompatible
GeminiStreamable HTTPOAuth 2.1MediumCompatible
Grok (xAI)Streamable HTTPBearer tokenMediumCompatible
Cursorstdio / HTTPVariesEasyCompatible
Windsurfstdio / HTTPVariesEasyCompatible
Clinestdio / HTTPVariesEasyCompatible
OpenClawstdio / HTTPOAuth 2.1 / N/AEasyCompatible

Transport Types

Crow's gateway supports two MCP transport protocols:

  • Protocol version: 2025-03-26
  • Endpoints: /memory/mcp, /research/mcp, /tools/mcp
  • Used by: Claude, Gemini, Grok, Cursor, Windsurf, Cline, Claude Code

SSE (Legacy)

  • Protocol version: 2024-11-05
  • Endpoints: /memory/sse, /research/sse, /tools/sse
  • Used by: ChatGPT

stdio (Local Only)

  • Direct process communication, no network
  • Used by: Claude Desktop, Claude Code (local), Cursor (local), Windsurf (local), Cline (local), OpenClaw (local)

Authentication

The gateway uses OAuth 2.1 with Dynamic Client Registration. When you connect a new client, it automatically:

  1. Discovers the OAuth metadata at /.well-known/oauth-authorization-server
  2. Registers itself as a client via /register
  3. Redirects you to authorize at /authorize
  4. Receives an access token via /token

This is the same standard flow used by most OAuth providers. No manual token management needed for platforms that support OAuth discovery.

For platforms that don't support OAuth discovery (like Grok), you can use the /introspect endpoint or configure bearer tokens manually.

Cross-Platform Context (crow.md)

Crow goes beyond shared data — it also shares behavioral context across platforms. The crow.md document defines how Crow behaves: identity, memory protocols, transparency rules, and your customizations. Every connected platform can load this same context, ensuring a consistent experience whether you're in Claude, ChatGPT, Gemini, or an IDE.

Access: Use the crow_get_context tool (any MCP platform) or GET /crow.md (HTTP endpoint).

See the Cross-Platform Guide for a complete walkthrough.

Released under the MIT License.