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 mako_help or 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 --version
$ 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
mako_help

When you know the task but not the tool sequence. Returns the ordered recipe, suggested args, and verification path.

ii
context_packet

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

iii
file_preflight

When a file is about to change. Returns findings, stale diagnostic flags, conventions, recent runs, and ack history in one call.

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.