Connect

Connect a client

Every client below talks to the same endpoint and signs in with your Syla account in the browser. No API keys, nothing to paste but the URL.

Claude (web and desktop)

  1. Settings → Connectors → Add custom connector
  2. Paste https://usesyla.app/api/mcp and add
  3. Claude sends you to Syla to approve the connection. Approve it.

Claude connections can also save explicit study memories; see save_academic_memory in the tool reference.

Claude Code

claude mcp add --transport http syla https://usesyla.app/api/mcp

The first tool call opens the browser to sign in.

ChatGPT

  1. Settings → Connectors → Create
  2. Paste https://usesyla.app/api/mcp and continue
  3. ChatGPT sends you to Syla to approve the connection. Approve it.

Cursor

Add to Cursor

Or by hand, in .cursor/mcp.json:

{
  "mcpServers": {
    "syla": {
      "url": "https://usesyla.app/api/mcp"
    }
  }
}

VS Code

code --add-mcp '{"name":"syla","url":"https://usesyla.app/api/mcp"}'

Any MCP client

Anything that speaks Streamable HTTP works with the standard config shape:

{
  "mcpServers": {
    "syla": {
      "url": "https://usesyla.app/api/mcp"
    }
  }
}

A client that only speaks stdio can bridge with npx mcp-remote https://usesyla.app/api/mcp.