Documentation

Wire Mako into your agent.

agentmako is a local-first MCP server for AI coding agents — Claude Code, Codex CLI, Cursor, Cline. Each setup guide is a five-minute walk: install, attach a project, paste an MCP config, restart the agent, run your first context_packet.

01
Quickstart

A two-step prerequisite, then any agent.

// install & attach a real project
$ npm install -g agentmako
$ cd /path/to/your/project
$ agentmako connect . --no-db
$ agentmako doctor          # expect green
$ agentmako tool list       # confirm tools are registered

Use --no-db for the first run. You can add Postgres / Supabase awareness later with interactive agentmako connect . or --db-env DATABASE_URL --yes for CI.

02
Pick your agent

Four harnesses. Same MCP server.

03
First commands to try

Once it's wired, start with these.

i
tool_search

When you don't yet know which Mako tool fits the job. Returns the right tool plus a reason.

ii
context_packet

When you have a coding task. Returns the file, routes, symbols, findings, and what to read next.

iii
reef_scout

When you want ranked candidates for a fuzzy question. Facts, findings, and prior reviews — all weighted.

Tip

Copy the agent guidance from AGENTS.md into your project's CLAUDE.md / AGENTS.md. It tells the agent when to call which Mako tool — without it they default to grep.

04
Concepts

How agentmako thinks about a codebase.

05
Recipes

Walk-throughs for the common agent tasks.

06
Reference

Tools, CLI, dashboard, FAQ.

What's next

Read the thinking, watch the traffic.

The blog covers the cost story, what grep can't do for an agent, multi-tenant audit patterns, and cross-session memory with Reef. Practical posts; no hype.