AI-powered project planning and implementation guidance through the Model Context Protocol (MCP).
# Start the MCP server in your project directory
npx kodebase
# Or install globally
npm i -g kodebase
kodebaseKodebase provides MCP tools that help AI assistants (Claude, Cursor, etc.) guide you through:
- Scout: Planning and spec creation - transform ideas into structured artifacts
- Sherpa: Implementation guidance - get context, quality gates, and next steps
Add to your ~/.claude/mcp.json:
{
"mcpServers": {
"kodebase": {
"command": "npx",
"args": ["kodebase"]
}
}
}Add to your .cursor/mcp.json:
{
"mcpServers": {
"kodebase": {
"command": "npx",
"args": ["kodebase"]
}
}
}KODEBASE_PROJECT_ROOT- Project root directory (defaults to current working directory)
MIT