llms.txt Content
# agentmako
> Local-first Model Context Protocol (MCP) server that gives AI coding agents
> typed, deterministic context about your codebase — instead of letting them
> grep blind. Compatible with Claude Code, Codex CLI, Cursor, and Cline.
agentmako is an open-source MCP server (Apache-2.0) that indexes your repo
into local SQLite, tracks ESLint/TypeScript diagnostics, snapshots your
Postgres or Supabase schema, and returns deterministic "context packets"
via the stdio Model Context Protocol. The Reef Engine layer adds durable
findings, freshness tracking, and cross-session memory.
Compatible with: Claude Code, Codex CLI, Cursor, Cline, Continue.dev, and
any other MCP-compliant client. Requires Node.js 20 or newer. No hosted
service — everything runs locally.
Install: `npm install -g agentmako`
## Quickstart
- [Install and attach a project](https://agentmako.drhalto.com/#install): four commands, ~60 seconds
- [CLAUDE.md / AGENTS.md template](https://agentmako.drhalto.com/CLAUDE.md): drop-in playbook telling agents when to use Mako tools
- [GitHub repository](https://github.com/drhalto/agentmako): source code, issues, contributions
- [npm package](https://www.npmjs.com/package/agentmako): published releases
## Setup guides per coding agent
- [Claude Code setup](https://agentmako.drhalto.com/docs/claude-code.html): plain MCP wiring or bundled `mako-ai` plugin with `/mako-ai` skills
- [Codex CLI setup](https://agentmako.drhalto.com/docs/codex.html): TOML config in `~/.codex/config.toml`
- [Cursor setup](https://agentmako.drhalto.com/docs/cursor.html): per-project `.cursor/mcp.json` or global config
- [Cline (VS Code) setup](https://agentmako.drhalto.com/docs/cline.html): paste into Cline MCP Servers settings
## Concepts
- [What is MCP (Model Context Protocol)?](https://agentmako.drhalto.com/docs/concepts/mcp.html): how MCP works, why it exists, what makes it different from a regular API
- [What is a context packet?](https://agentmako.drhalto.com/docs/conc