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)
- Settings → Connectors → Add custom connector
- Paste
https://usesyla.app/api/mcpand add - 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/mcpThe first tool call opens the browser to sign in.
ChatGPT
- Settings → Connectors → Create
- Paste
https://usesyla.app/api/mcpand continue - ChatGPT sends you to Syla to approve the connection. Approve it.
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.

