ORI MCP
Remote Configs
Use these snippets when your host supports a remote MCP endpoint over HTTP.
Endpoint
Shared remote MCP
URL: https://dev.thynaptic.com/mcp
Authorization: Bearer ori.<prefix>.<secret>
Claude Desktop
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"
}
}
}
}
Cursor / VS Code
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"
}
}
Codex / Generic
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"
}
}
Fallback
If the host only supports stdio
Use the Python bridge fallback and the example at /mcp-config.example.json.
Links