Claude Code
Two ways to connect: the plugin, or the server address on its own. Both sign in through your browser.
Screenshots of Claude Code will be added after the public launch. The steps below follow Claude Code’s current documentation (checked 2026-09-18); menu names can change.
Plugin
The plugin adds the Korala server and a skill. The skill teaches Claude the drafting workflow and the draft link that needs no account.
The korala-ai/claude-plugins marketplace repository is available at launch. Until then, use the direct method below.
-
Add the marketplace and install the plugin:
/plugin marketplace add korala-ai/claude-plugins /plugin install korala@korala -
Run
/mcp, choose korala, and sign in. -
Approve the connection on Korala’s consent page. See Permissions and safety.
Direct
-
Add the server:
claude mcp add --transport http korala https://api.korala.ai/mcp -
Start a session, run
/mcp, choose korala, and authenticate. -
Approve the connection on Korala’s consent page.
Check and remove:
claude mcp list
claude mcp remove koralaShare the server with your team
Add --scope project and Claude Code writes .mcp.json in the repository root:
claude mcp add --transport http --scope project korala https://api.korala.ai/mcp{
"mcpServers": {
"korala": {
"type": "http",
"url": "https://api.korala.ai/mcp"
}
}
}The file holds the address and no credentials. Each teammate signs in with their own Korala account.
Headless use
Sign in once in an interactive session. After that, non-interactive runs reuse the connection:
claude -p "List my Korala documents that are pending" \
--allowedTools "mcp__korala__*"For CI machines where nobody can open a browser, use an API key.
If Korala says it no longer recognizes the assistant
Claude Code remembers the registration it made with Korala. If that registration is removed, the sign-in page says “Korala no longer recognizes this assistant”. Remove the server and add it again:
claude mcp remove korala
claude mcp add --transport http korala https://api.korala.ai/mcp