AI ToolsIntegrations
Claude
Configure Claude to work with Cadence via skills, MCP, or context injection.
Claude Code
Install the Cadence skill
npx skills add outblock/cadence-lang.orgAdd MCP server
claude mcp add cadence-mcp -- npx -y mcp-remote https://cadence-mcp.up.railway.app/mcpOr use install-mcp for auto-configuration:
npx install-mcp @outblock/cadence-mcp --client claude-desktopThis gives Claude Code access to all MCP tools — documentation search, code checking, type inspection, and more.
Claude Desktop
Add the Cadence MCP server to your claude_desktop_config.json:
{
"mcpServers": {
"cadence": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://cadence-mcp.up.railway.app/mcp"]
}
}
}Claude API
When building with the Claude API, inject Cadence context into the system prompt:
# Fetch the full documentation
curl -s https://cadence-lang.org/llms-full.txtOr use the MCP endpoint for programmatic access to documentation and language tools.