Quick Start
SynquoRum implements the Model Context Protocol (MCP) on /api/mcp/streamable, so any MCP-capable agent CLI or IDE can read your projects, write notes / minutes, run integrations, and route prompts through your BYOK providers — all over a single Bearer token you control from Settings.
Open Settings → Agent CLI, click Generate new token, pick your client (Claude Code, Cursor, Gemini, …). The page shows a token plus a ready-to-paste config block for that exact client. Copy both into your CLI's config file. Restart the CLI. Done.
Tokens are shown once — save them before closing the dialog. Revoke any token from the same screen at any time.
22 tools across read, write, and AI / integration. Every connected MCP client sees the same surface — the differentiator is how the client chooses to surface them (auto-discovery, slash command, tool picker, …).
* v7.0: call_ai routes a prompt through one of your BYOK providers (32 formats supported). execute_integration runs any of your 664 connected integration actions (Slack, Notion, GitHub, Gmail, …).
Anthropic's terminal coding agent. Native MCP HTTP transport.
Generated dynamically with your token inserted at Settings → Agent CLI. The static example below is for reference; copy the live one from Settings to avoid typos.
{
"mcpServers": {
"synquorum": {
"type": "http",
"url": "https://synquorum.com/api/mcp/streamable",
"headers": {
"Authorization": "Bearer syn_XXXX_PASTE_YOURS_HERE"
}
}
}
}Anthropic's desktop app. Add the MCP server through the JSON config file; the desktop UI then surfaces tools in the 🔧 picker.
Generated dynamically with your token inserted at Settings → Agent CLI. The static example below is for reference; copy the live one from Settings to avoid typos.
{
"mcpServers": {
"synquorum": {
"type": "http",
"url": "https://synquorum.com/api/mcp/streamable",
"headers": {
"Authorization": "Bearer syn_XXXX_PASTE_YOURS_HERE"
}
}
}
}OpenAI's terminal agent. Register the MCP server via `codex mcp add` (CLI) or the config TOML.
Generated dynamically with your token inserted at Settings → Agent CLI. The static example below is for reference; copy the live one from Settings to avoid typos.
codex mcp add \
--transport http \
--header "Authorization: Bearer syn_XXXX_PASTE_YOURS_HERE" \
synquorum https://synquorum.com/api/mcp/streamable
# Or add manually to ~/.codex/config.toml:
[[mcp_servers]]
name = "synquorum"
transport = "http"
url = "https://synquorum.com/api/mcp/streamable"
headers = { Authorization = "Bearer syn_XXXX_PASTE_YOURS_HERE" }Google's terminal agent. Native MCP HTTP transport via settings.json.
Generated dynamically with your token inserted at Settings → Agent CLI. The static example below is for reference; copy the live one from Settings to avoid typos.
{
"mcpServers": {
"synquorum": {
"httpUrl": "https://synquorum.com/api/mcp/streamable",
"headers": {
"Authorization": "Bearer syn_XXXX_PASTE_YOURS_HERE"
}
}
}
}AI-first code editor with MCP support in Composer.
Generated dynamically with your token inserted at Settings → Agent CLI. The static example below is for reference; copy the live one from Settings to avoid typos.
{
"mcpServers": {
"synquorum": {
"url": "https://synquorum.com/api/mcp/streamable",
"headers": {
"Authorization": "Bearer syn_XXXX_PASTE_YOURS_HERE"
}
}
}
}Open-source AI coding extension for VS Code and JetBrains. MCP is under experimental.
Generated dynamically with your token inserted at Settings → Agent CLI. The static example below is for reference; copy the live one from Settings to avoid typos.
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "http",
"url": "https://synquorum.com/api/mcp/streamable",
"headers": {
"Authorization": "Bearer syn_XXXX_PASTE_YOURS_HERE"
}
}
}
]
}
}Codeium's agentic IDE. Cascade workflows can call MCP tools automatically.
Generated dynamically with your token inserted at Settings → Agent CLI. The static example below is for reference; copy the live one from Settings to avoid typos.
{
"mcpServers": {
"synquorum": {
"serverUrl": "https://synquorum.com/api/mcp/streamable",
"headers": {
"Authorization": "Bearer syn_XXXX_PASTE_YOURS_HERE"
}
}
}
}Pair-programming terminal agent that edits your codebase via git diffs. MCP support is evolving; works best in /architect mode.
Generated dynamically with your token inserted at Settings → Agent CLI. The static example below is for reference; copy the live one from Settings to avoid typos.
aider --mcp-server "synquorum=https://synquorum.com/api/mcp/streamable" \
--mcp-header "synquorum:Authorization: Bearer syn_XXXX_PASTE_YOURS_HERE"
# Or via ~/.aider.conf.yml:
mcp-server:
- synquorum=https://synquorum.com/api/mcp/streamable
mcp-header:
- "synquorum:Authorization: Bearer syn_XXXX_PASTE_YOURS_HERE"Anything that speaks Streamable HTTP MCP (Zed, custom scripts, future tools). The endpoint contract is the same.
Generated dynamically with your token inserted at Settings → Agent CLI. The static example below is for reference; copy the live one from Settings to avoid typos.
# Pseudo-config — adapt to your client's format
endpoint: https://synquorum.com/api/mcp/streamable
transport: streamable_http
auth:
type: bearer
token: syn_XXXX_PASTE_YOURS_HEREcall_ai get its API key?From your registered providers in Settings → AI Providers. Pick a provider UUID; the server decrypts your BYOK key and calls the upstream model. The MCP token alone is not a model-provider key — it's a SynquoRum-session key that authorizes use of your stored credentials.
call_ai consume SynquoRum points?β1.0: no — MCP calls bypass the chat UI's point pipeline. Cost is borne by the upstream provider on your BYOK key. β1.1+ will unify this so MCP and chat-UI calls share the same metering.
β1.0: chat-UI calls write to integration_logs; MCP calls currently don't. The library refactor that landed in ラリー 189-190 sets up the shared call path; the audit-log unification ships in β1.1+.
120 MCP requests per minute per token. The 30/min limit on chat-UI /api/ai/send does not apply to the MCP path — they're separate accounting buckets.
No. Tokens are hashed on creation and the plaintext is never stored. Revoke the lost token from Settings → Agent CLI and generate a new one. The revoked token stops working immediately.