Connect Claude Code
Create a tools-mode exposure, add the Kareenos connector to Claude Code, and make the first call.
Claude Code is a coding assistant that runs in your terminal. Connected to Kareenos through the MCP standard, it can build complete solutions in your account: sheets, automated jobs, agents, widgets, pages, and whole web applications hosted on Kareenos. This page connects the two.
Where to find it
Press Open in Kareenos above, or open the left menu and choose Editors, MCP Servers, then the Exposures tab. An exposure is a key that lets an outside tool act inside your account. Creating one is an administrator's job.
When to use it
Use it when a developer (or you, with Claude Code) will build for your account from a terminal rather than through the in-app Super Agent. Both can work on the same project: what Claude Code builds, the Super Agent can open, extend and maintain, and the other way round.
Step by step: connecting Claude Code
Open MCP Servers, switch to Exposures and press Add Exposure.
Choose the tools mode, give it a name, and pick the project Claude Code should work in by default.
Save and copy the key. It is shown once. Keep it like a password: anyone holding it can act in your account.
On the developer's computer, add the connector to Claude Code. The address must be the full one shown in the exposure panel:
claude mcp add --transport http kareenos <the endpoint address> \ --header "Authorization: Bearer <the key>"Start a new Claude Code session and ask it to call
kareenos_context. That first call is free and hands Claude Code the platform's own building guide, including how to build and publish a web application.
Important
Every call the connector makes is billed to your account's credits, and the key gives full builder access. Rotate the key from the same panel if it ever leaks, and delete the exposure when the work is done.
Common mistakes
- A relative address. The
claude mcp addcommand stores the address exactly as typed and never connects if it is not a full address starting withhttps://. - An old session. Claude Code reads its connectors when a session starts. After adding one, start a new session.
- Building in the wrong project. The exposure's default project is where new work lands unless the developer names another one. Set it deliberately.