Quickstart
Install Kerno and connect it to your AI coding agent.
Last updated
Install Kerno and connect it to your AI coding agent.
Docker: must be installed and running
Node.js 18+: required to run the Kerno CLI
Git: your project must be a git repository
Python, TypeScript, or JavaScript project: these are the currently supported languages
Install globally:
npm install -g @kerno/cliOr run without installing:
npx @kerno/cli mcpFrom your project directory:
kerno mcpOr pointing to your project from anywhere:
kerno mcp -w /absolute/path/to/your/repoThis starts the Kerno agent and prints the MCP config for your coding tool. On first run, it will download the agent. This takes a moment. If you are not logged in, it will open a browser window to authenticate. Once done, return to your terminal.
Kerno exposes an MCP server at the URL printed in your terminal. Add it to your coding tool using that URL.
The port is session-specific. Always copy it from your terminal output.
Claude Code:
Cursor, add to .cursor/mcp.json:
Any MCP-compatible coding tool can connect using the same URL.
Kerno is connected. Continue to Start the environment to bring up your local stack so Kerno can run validations against it.
Last updated
claude mcp add --transport http kerno http://localhost:<port>/mcp{
"mcpServers": {
"kerno": {
"url": "http://localhost:<port>/mcp",
"transport": "http"
}
}
}