Shared remote MCP

URL: https://dev.thynaptic.com/mcp
Authorization: Bearer ori.<prefix>.<secret>

Remote entry

Use when the host supports remote MCP server URLs directly.

{
  "mcpServers": {
    "ori": {
      "type": "http",
      "url": "https://dev.thynaptic.com/mcp",
      "headers": {
        "Authorization": "Bearer ori.<prefix>.<secret>",
        "X-Env-OS": "Darwin",
        "X-Env-PWD": "/Users/dev/project",
        "X-Env-Project": "My Project"
      }
    }
  }
}

Remote entry

Use when the editor's MCP settings accept a remote URL and custom headers.

{
  "name": "ori",
  "type": "http",
  "url": "https://dev.thynaptic.com/mcp",
  "headers": {
    "Authorization": "Bearer ori.<prefix>.<secret>",
    "X-Env-OS": "Darwin",
    "X-Env-PWD": "/Users/dev/project",
    "X-Env-Project": "My Project"
  }
}

Remote entry

Use this shape for any MCP host that supports remote HTTP transport.

{
  "name": "ori",
  "transport": "streamable_http",
  "url": "https://dev.thynaptic.com/mcp",
  "headers": {
    "Authorization": "Bearer ori.<prefix>.<secret>",
    "X-Env-OS": "Darwin",
    "X-Env-PWD": "/Users/dev/project",
    "X-Env-Project": "My Project"
  }
}

If the host only supports stdio

Use the Python bridge fallback and the example at /mcp-config.example.json.

Related files