Sandbox
@erpipe-org/mcp-odoo

MCP server for Odoo with gated writes

This repo connects agent clients to Odoo so they can read records, inspect models, and carry out approved changes instead of relying on custom scripts. It is built as a local Python MCP server, with multi-instance routing, read diagnostics, and write approval controls.

407 starsβ€’186 forksβ€’Pythonβ€’Updated 23d ago
Who it's for

Builders who want their agent to work against live Odoo databases without hand-built integrations.

What it delivers

You can let an agent query and update Odoo with safer, reviewed writes instead of direct access.

What it does

Read and diagnostic tools

Reads records and attachments, inspects schemas, checks access rules, and diagnoses Odoo calls and upgrade issues.

Gated write workflow

Blocks direct writes unless approval is enabled, the write is validated, and the token or confirmation flow passes.

Multi-instance support

Routes tools to named Odoo instances in one server process, with isolated credentials and per-instance tokens.

Odoo 16-19 transport support

Uses XML-RPC for Odoo 16-18 and JSON-2 for Odoo 19+, with migration helpers for the newer API.

Client setup examples

Includes ready-made config examples for Claude Code, Cursor, Codex, and other MCP clients.

Agent skills pack

Ships reusable Odoo workflow skills under `skills/` for tasks like data quality, migration, and month-end close.

How to get it

  1. 1The fastest path is the interactive wizard via uvx, which fetches the package on demand
    uvx odoo-mcp --setup
  2. 2Using Claude Desktop on macOS? It reads MCP configuration from
    ~/Library/Application Support/Claude/claude_desktop_config.json
  3. 3Other ways to install
    pip install odoo-mcp
    # or: pipx install odoo-mcp
  4. 4Prefer a container? See Docker. For local development
    git clone https://github.com/erpipe-org/mcp-odoo.git
    cd mcp-odoo
    uv sync --extra dev
  5. 5Already know your client? One-liners and config snippets
    claude mcp add odoo --env ODOO_URL=https://mycompany.odoo.com --env ODOO_DB=mycompany \
      --env ODOO_USERNAME=agent@mycompany.com --env ODOO_PASSWORD=your-api-key -- uvx odoo-mcp

README

Odoo MCP

ERPipe is the managed Odoo MCP gateway from the maintainer of erpipe-org/mcp-odoo, formerly tuanle96/mcp-odoo; the Python project remains the self-hosted server.

The free AI layer for Odoo β€” any edition, any version.
Odoo's built-in AI is Enterprise-only. Odoo MCP gives Community and Enterprise 16+ the same power for $0 with the LLM you already use (Claude, GPT, Gemini, DeepSeek, Ollama).
Five-minute install. Zero Odoo-side setup. Safe writes, real diagnostics, JSON-2 ready years before the Odoo 22 XML-RPC removal.

PyPI Python Downloads License CI Stars Forks Agent Skills

πŸš€ ERPipe hosted β€” free v1 Β· live at erpipe.com Β Β·Β  TypeScript open core Β Β·Β  πŸ” Fixed-price audits

Want ChatGPT / Claude on a stable remote URL without running a process?
ERPipe is the hosted product from the same author β€” free v1 public beta, live in production.
Sign up β†’ add HTTPS Odoo instance(s) β†’ connect once to https://mcp.erpipe.com/mcp (workspace OAuth, multi-instance, gated writes, audit dashboard).
This repo stays the local / self-host Python server (full 41-tool surface, stdio, Docker). TypeScript building blocks: erpipe.

This repo (odoo-mcp)ERPipe hosted
Run whereYour laptop / Docker / CICloudflare (managed)
Installuvx odoo-mcp --setupSign up at erpipe.com
MCP URLstdio or local HTTPhttps://mcp.erpipe.com/mcp
ClientsClaude Code, Cursor, local agentsChatGPT (primary), Claude, Cursor, any remote MCP client
Tool surface41 tools + 11 prompts (full local pack)43 tools + 7 prompts (workspace multi-instance + governance; catalog)
Multi-instanceConfig file / env on your machineDashboard + explicit instance key per tool
WritesEnv gate + approval tokens (+ optional MCP elicitation)Default OFF Β· HITL inbox Β· journal Β· field policy
AuditOptional JSONL fileDashboard + D1 audit trail
CostFree forever (MIT)Free v1 beta (fair-use caps)

Odoo MCP turns any Odoo 16+ database into a Model Context Protocol server β€” using only your existing credentials. No App Store module, no permission setup, no admin access required. Built for local agents, IDEs, and automation tools that need real Odoo context without hand-rolled scripts or unsafe direct write access.

It speaks XML-RPC for Odoo 16-18 and External JSON-2 for Odoo 19+. It exposes a compact MCP surface with read tools, diagnostics, schema discovery, migration helpers, local addon scanning, and a gated write workflow. One server can serve multiple named Odoo instances at once.

Try it in 30 seconds

Once configured (see Setup), ask your agent things like:

"Show me all customers from Spain with unpaid invoices."

"Find products with stock below 10 units in the main warehouse."

"Audit the custom_billing addon for upgrade risks before we move to Odoo 19."

Highlights

CapabilityWhat it gives you
41 MCP toolsRead records and attachments, aggregate server-side, post chatter, inspect schema, build domains, scan addons, diagnose calls and upgrade logs, check data quality, access rules, resolve model renames, validate writes, and fan out across instances.
Field-level ACLOpt-in per-instance, per-model field allow/deny enforced on every read path (records, aggregates, knowledge index, resources). First open-source Odoo MCP with it. See docs/field-acl.md.
Cross-instance queriesRead-only fan-out across many client DBs with merged, attributed, partial-failure-tolerant results β€” no warehouse, no sync. See docs/partner-playbook.md.
Workflow prompts11 prompts including 6 end-to-end business workflows (invoice approval, PO match, onboarding, expense review, month-end close, pre-migration data quality) that route writes through the gate.
Background taskssubmit_async_task runs long read operations (addon scans, knowledge indexing, AR/AP aging) on a bounded worker pool; poll with get_async_task while the agent keeps reasoning.
Local-first knowledge searchindex_knowledge + search_knowledge give BM25 relevance ranking over a bounded record slice β€” accent-insensitive, in-process, no embeddings service, no data leaving the machine.
Accounting packreceivable_payable_aging and accounting_health_summary answer the most common finance questions in one call instead of hand-built domains.
Agent Skills pack4 business-workflow skills (data-quality gate, migration copilot, month-end close, agency fleet review) β€” npx skills add erpipe-org/mcp-odoo. Developing on Odoo with shell access? Add the 21-skill companion dev suite odoo-ai-skills. See skills/.
Tool pluginsShip your own tools as pip packages (odoo_mcp.tools entry points) β€” opt-in via ODOO_MCP_PLUGINS, fail-isolated, no fork needed. Trim the surface per deployment with ODOO_MCP_TOOLS_INCLUDE/EXCLUDE. See docs/plugins.md.
Rate limitingOpt-in sliding-window budget per instance and tool (ODOO_MCP_RATE_LIMIT_MODE=warn|block), surfaced in health_check.
Multi-instanceOne server, several named Odoo instances β€” optional instance parameter on every tool, list_instances discovery, instance-bound approval tokens, per-instance schema caches.
5 agent promptsReusable workflows for failed calls, fit/gap workshops, JSON-2 migration, safe writes, and module audits.
Odoo 16-19 coverageXML-RPC by default, JSON-2 opt-in for Odoo 19.
MCP 2026-07-28Stateless modern protocol with server/discover, plus automatic compatibility with legacy 2025-11-25 clients on the same endpoint.
Streamable HTTPLocal HTTP/SSE support for clients that do not use stdio.
Smart field selectionsearch_records and read_record curate business-relevant fields when no fields argument is supplied β€” drops audit, message, binary, and unstored compute noise. Pass fields=["*"] to opt out.
Server-side aggregationaggregate_records pushes groupby/sum/count/avg into Postgres via formatted_read_group (Odoo 19+) or read_group (16-18).
Chatter integrationchatter_post adds messages to any mail.thread record under the same approval-token gate as writes β€” or directly via MCP_CHATTER_DIRECT=1.
Locale plumbingODOO_LOCALE injects context.lang automatically on every Odoo call (caller can override).
Structured loggingJSON formatter and rotating file handler via ODOO_MCP_LOG_LEVEL, ODOO_MCP_LOG_JSON, ODOO_MCP_LOG_FILE.
Safe writesDirect create, write, and unlink are blocked; approved writes require live metadata, a same-session token, explicit confirmation, and an env gate.
Human-in-the-loop approvalODOO_MCP_ELICIT_WRITES=1 shows a native MCP confirmation form (with a diff summary) before any approved write executes β€” token flow stays as fallback.
Audit trailODOO_MCP_AUDIT_LOG appends one JSONL line per write-path event (preview, validate, execute, chatter) with instance and token digest.
ResilienceRead-only calls retry connection errors with exponential backoff; schema caches are TTL- and LRU-bounded; health_check flags N+1 read loops.
Real smoke testsDocker Compose validation boots disposable Odoo 16.0, 17.0, 18.0, and 19.0 stacks, including restricted users, custom record rules, and packaged addon XML install/update.

Why Odoo MCP

TraitOdoo MCPOther MCP-Odoo bridges
Setup steps on Odoo side0 β€” works with any Odoo 16+ instance using credentials you already have.Often require installing an App Store module, configuring enabled models, and granting per-tool permissions.
Safe write workflowApproval token + live fields_get validation + explicit confirm + env gate.Often expose direct create/write/unlink or a "yolo" bypass.
Diagnosticsdiagnose_odoo_call, diagnose_access, inspect_model_relationships, upgrade_risk_report, fit_gap_report, business_pack_report, scan_addons_source.Usually CRUD only.
TransportXML-RPC (16+) and External JSON-2 (Odoo 19+). Ready for the Odoo 22 XML-RPC removal years early.Usually XML-RPC only β€” deprecated since Odoo 19, removed in Odoo 22.
Migration helpersgenerate_json2_payload previews the JSON-2 body for any XML-RPC call before you migrate.None.
Multi-instanceNamed instances in one config file, per-tool routing, tokens and caches isolated per instance.Usually one global connection per server process.
Agent prompts5 ready-made prompts for diagnose / fit-gap / JSON-2 migration / safe-write / module-audit.Usually none.
HTTP transport securityDNS-rebinding protection, host/origin allowlists, local-bind by default.Often missing.
Real Odoo smoke testsDocker Compose harness boots disposable Odoo 16/17/18/19 stacks per release.Often mock-based only.
Framework examplesCopy-paste adapters for Cursor, Claude Code, OpenAI Agents, LangGraph, CrewAI, and n8n in examples/.None.
Audit & approval UXJSONL audit trail + native elicitation confirm forms β€” without installing anything in Odoo.Audit features usually require an Odoo-side module.

Comparing specific projects? See the per-project breakdown in docs/comparison.md.

Setup

Two paths to a working server: set it up yourself, or paste one prompt and let your coding agent do it for you.

For humans

The fastest path is the interactive wizard via uvx, which fetches the package on demand:

uvx odoo-mcp --setup

The wizard asks for your Odoo URL, database, and credentials, tests the connection live, writes the config file, and prints ready-to-paste snippets for Claude Code, Cursor, and Claude Desktop. Prefer a quick smoke check instead? uvx odoo-mcp --health.

Using Claude Desktop on macOS? It reads MCP configuration from:

~/Library/Application Support/Claude/claude_desktop_config.json

Use an absolute Python path because GUI apps may not inherit your shell PATH:

{
  "mcpServers": {
    "odoo": {
      "command": "/opt/homebrew/bin/python3",
      "args": ["-m", "odoo_mcp"],
      "env": {
        "ODOO_URL": "https://your-odoo-instance.com",
        "ODOO_DB": "your-database",
        "ODOO_USERNAME": "your-user",
        "ODOO_PASSWORD": "your-password-or-api-key",
        "ODOO_TRANSPORT": "xmlrpc"
      }
    }
  }
}

More client configs (Windsurf, VS Code, Zed, Continue.dev, Streamable HTTP) are in docs/client-configs.md.

Other ways to install:

pip install odoo-mcp
# or: pipx install odoo-mcp

Prefer a container? See Docker. For local development:

git clone https://github.com/erpipe-org/mcp-odoo.git
cd mcp-odoo
uv sync --extra dev

For AI agents

Paste this into Claude Code, Cursor, Codex, or any coding agent and it will install the server for you:

Install the odoo-mcp MCP server (https://github.com/erpipe-org/mcp-odoo) in this environment:

1. Ask me for my Odoo URL, database name, username, and password or API key.
   Treat them as secrets: never echo, print, or log these values.
2. Register the server as a stdio MCP server:
   - Claude Code: claude mcp add odoo --env ODOO_URL=<url> --env ODOO_DB=<db>
     --env ODOO_USERNAME=<user> --env ODOO_PASSWORD=<secret> -- uvx odoo-mcp
   - Any other client: write the equivalent config with "command": "uvx",
     "args": ["odoo-mcp"], and the same four env vars.
3. Verify the install: run `uvx odoo-mcp --health`, then call the health_check
   MCP tool and confirm the Odoo connection is reachable.
4. Leave writes disabled (do not set ODOO_MCP_ENABLE_WRITES) unless I
   explicitly ask you to enable them.

Full machine-readable instructions: https://github.com/erpipe-org/mcp-odoo/blob/main/llms-install.md

Already know your client? One-liners and config snippets:

claude mcp add odoo --env ODOO_URL=https://mycompany.odoo.com --env ODOO_DB=mycompany \
  --env ODOO_USERNAME=agent@mycompany.com --env ODOO_PASSWORD=your-api-key -- uvx odoo-mcp

Framework SDKs

Copy-paste-runnable integrations live in examples/:

ClientExample
Cursorexamples/cursor/ β€” .cursor/mcp.json + agent rules
Claude Code / Codex CLIsnippets in examples/README.md
OpenAI Agents SDKexamples/openai-agents/ β€” local + hosted variants
LangGraphexamples/langgraph/ β€” langchain-mcp-adapters
CrewAIexamples/crewai/ β€” native mcps=[...] agent
n8nexamples/n8n/ β€” importable workflow JSON

Configuration reference

Set connection values in the environment:

export ODOO_URL="https://your-odoo-instance.com"
export ODOO_DB="your-database"
export ODOO_USERNAME="your-user"
export ODOO_PASSWORD="your-password-or-api-key"
export ODOO_TRANSPORT="xmlrpc"

For Odoo 19 JSON-2:

export ODOO_TRANSPORT="json2"
export ODOO_API_KEY="your-odoo-api-key"
export ODOO_JSON2_DATABASE_HEADER="1"

ODOO_JSON2_DATABASE_HEADER=1 sends X-Odoo-Database on JSON-2 calls. Set it to 0 only when host or dbfilter routing already selects the intended database.

Optional environment variables:

VariableDefaultEffect
ODOO_CONFIG_FILEunsetExplicit path to a config file, checked before the standard locations.
ODOO_LOCALEunsetInject context.lang on every Odoo call. Caller-supplied context.lang always wins.
ODOO_MCP_MAX_SMART_FIELDS15Cap for smart-field selection when caller omits fields.
ODOO_MCP_LOG_LEVELINFOProcess logger level (DEBUG/INFO/WARNING/ERROR/CRITICAL).
ODOO_MCP_LOG_JSON0Truthy β†’ emit JSON-formatted log lines.
ODOO_MCP_LOG_FILEunsetPath β†’ enable rotating file handler (10MB Γ— 3 backups).
ODOO_MCP_ENABLE_WRITES0Required for execute_approved_write.
ODOO_MCP_ALLOWED_SIDE_EFFECT_METHODSemptyExact model.method allowlist (e.g. sale.order.action_confirm).
ODOO_MCP_POLICY_FILE./odoo_mcp_policy.json if presentVersion-controllable side-effect allowlist with review metadata (see odoo_mcp_policy.json.example); merged with the env allowlist.
ODOO_MCP_ALLOW_UNKNOWN_METHODS0Broad mode for execute_method. Prefer the exact allowlist above.
ODOO_MCP_AUDIT_LOGunsetPath β†’ append one JSONL line per write-path event (preview/validate/execute/chatter), tokens stored as digests.
ODOO_MCP_ELICIT_WRITES0Truthy β†’ execute_approved_write asks the human via MCP elicitation (native confirm form with a diff summary) before executing; falls back to the token flow when the client cannot elicit.
ODOO_MCP_RETRY_ATTEMPTS2Extra attempts for read-only calls on connection errors (0–5). Writes never retry.
ODOO_MCP_RETRY_BACKOFF0.5Base retry backoff seconds; doubles per retry.
ODOO_MCP_SCHEMA_CACHE_TTL600Schema cache entry lifetime in seconds.
ODOO_MCP_SCHEMA_CACHE_MAX256Max schema cache entries (LRU eviction).
ODOO_MCP_RATE_LIMIT_MODEoffwarn tracks per-instance:tool call rates in health_check; block refuses over-budget calls on the hot read tools and execute_method.
ODOO_MCP_RATE_LIMIT_WINDOW60Sliding window length in seconds for rate tracking.
ODOO_MCP_RATE_LIMIT_MAX_CALLS120Calls allowed per window per instance:tool.
ODOO_MCP_ASYNC_MAX_WORKERS2Worker threads for submit_async_task.
ODOO_MCP_ASYNC_MAX_TASKS50Max retained background tasks (finished tasks evicted oldest-first).
ODOO_MCP_ASYNC_RESULT_TTL3600Seconds a finished background task result stays pollable.
ODOO_MCP_KNOWLEDGE_MAX_DOCS5000Total documents allowed across all local BM25 knowledge indexes.
ODOO_MCP_FIELD_POLICY_FILEshared policy fileField ACL policy (a field_acl key in the policy file, or a dedicated file here). Denied fields are removed from every read path. See docs/field-acl.md.
ODOO_MCP_CROSS_INSTANCE_WORKERS4Bounded concurrency for cross-instance fan-out tools.
MCP_CHATTER_DIRECT0Truthy β†’ chatter_post skips the approval token gate and posts immediately.
MCP_ALLOW_REMOTE_HTTP0Truthy β†’ permit non-local HTTP binds (still requires external auth/TLS).
MCP_ALLOWED_HOSTS / MCP_ALLOWED_ORIGINSlocalCSV allowlists for HTTP transports.
ODOO_MCP_MAX_ATTACHMENT_BYTES1048576Download cap for read_attachment content (hard cap 16 MiB).
ODOO_MCP_ATTACHMENT_UPLOAD_ROOTSunsetColon-separated local directories validate_write may read <field>_from_path uploads from (mirrors ODOO_ADDONS_PATHS). Required β€” fails closed with no roots configured.
ODOO_MCP_MAX_ATTACHMENT_UPLOAD_BYTES10485760Size cap for <field>_from_path local-file uploads (hard cap 16 MiB).
ODOO_MCP_AUTH_ISSUER_URLunsetOAuth 2.1: authorization server issuer. With the two vars below, the HTTP transport becomes a protected resource server (RFC 9728 metadata + bearer validation).
ODOO_MCP_AUTH_INTROSPECTION_URLunsetRFC 7662 token introspection endpoint of the authorization server.
ODOO_MCP_AUTH_RESOURCE_URLunsetCanonical URL of this MCP server (RFC 8707 audience check when the AS binds tokens).
ODOO_MCP_AUTH_REQUIRED_SCOPESemptyCSV scopes required on every request.
ODOO_MCP_AUTH_CLIENT_ID / _CLIENT_SECRETunsetCredentials for the introspection call when the AS requires client auth.
ODOO_MCP_AUTH_REQUIRE_AUD0Truthy β†’ reject tokens whose introspection response has no aud claim (default only checks aud when present).
ODOO_MCP_AUTH_REQUIRE_ISS0Truthy β†’ reject introspection responses without an iss claim. A present iss must always match ODOO_MCP_AUTH_ISSUER_URL (mix-up attack hardening).
ODOO_MCP_AUTH_CACHE_TTL60Seconds to cache introspection verdicts (0 disables). Bounds both AS load and revocation lag.
ODOO_MCP_PLUGINSunsetCSV entry-point names to load as third-party tool plugins (group odoo_mcp.tools). Installation alone activates nothing; failures are isolated and reported in health_check. See docs/plugins.md.
ODOO_MCP_TOOLS_INCLUDE / _EXCLUDEunsetCSV fnmatch globs trimming the registered tool surface per deployment (small agents drown in 41 tools). Removed names listed in health_check.
ODOO_MCP_INSTRUCTIONS_FILEunsetPlain-text file appended to the server-level MCP instructions every client receives β€” deployment-specific guidance (fiscal-year rules, naming conventions) without touching tool descriptions.

You can also use odoo_config.json:

{
  "url": "https://your-odoo-instance.com",
  "db": "your-database",
  "username": "your-user",
  "password": "your-password-or-api-key"
}

Multiple Odoo instances

One server can talk to several Odoo databases. Add an instances map to your config file (auto-detected β€” a file without instances keeps the flat single-instance shape above):

{
  "default": "acme",
  "instances": {
    "acme": {
      "url": "https://acme.odoo.com",
      "db": "acme",
      "username": "bot",
      "api_key": "...",
      "transport": "json2"
    },
    "globex": {
      "url": "https://globex.odoo.com",
      "db": "globex",
      "username": "bot",
      "password": "...",
      "lang": "fr_FR",
      "timeout": 60
    }
  }
}
  • Every read/write tool accepts an optional instance parameter; omitted β†’ the default instance. default itself is optional when only one instance is defined.
  • Each entry supports the same keys as the flat config (url, db, username, password, api_key, transport, json2_database_header, lang) plus timeout and verify_ssl. Instance entries are self-contained: credentials and transport never fall back to env vars (so one instance can never inherit another deployment's ODOO_API_KEY). Only non-credential knobs (ODOO_TIMEOUT, ODOO_VERIFY_SSL, ODOO_LOCALE) act as fallback defaults for entries that omit them. Env overrides like ODOO_TRANSPORT/ODOO_API_KEY still apply to legacy flat configs, as before.
  • ODOO_CONFIG_FILE=/path/to/config.json points at an explicit config file, checked before ./odoo_config.json, ~/.config/odoo/config.json, and ~/.odoo_config.json.
  • Precedence: when ODOO_URL/ODOO_DB/ODOO_USERNAME/ODOO_PASSWORD are all set, the environment wins and defines a single instance named default β€” unset them to use a multi-instance file.
  • Instance names must match [A-Za-z0-9_-]{1,64}. Clients connect lazily β€” an instance is only contacted when a tool targets it.
  • Discovery: the list_instances tool returns configured names, URLs, databases, and transports β€” never credentials.
  • Write-approval tokens encode the instance name, so a token validated against one instance can never execute on another.
  • MCP resources (odoo://…) always use the default instance in this release; use tools for multi-instance access.

Run

Start the MCP server over stdio:

odoo-mcp

or:

python -m odoo_mcp

Start Streamable HTTP for local clients:

odoo-mcp --transport streamable-http --host 127.0.0.1 --port 8000 --path /mcp

Non-local HTTP binds are rejected unless you pass --allow-remote-http or set MCP_ALLOW_REMOTE_HTTP=1. This server does not include built-in HTTP authent

Files in the repo

Repository payloadβ€’34 top-level entries
  • .github
  • docs
  • examples
  • mcpb
  • scripts
  • site
  • skills
  • src
  • tests
  • .dockerignore
  • .editorconfig
  • .gitignore
  • .importlinter
  • CHANGELOG.md
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • docker-compose.integration.yml
  • Dockerfile
  • glama.json
  • LICENSE
  • llms-install.md
  • MANIFEST.in
  • odoo_config.json.example
  • odoo_config.multi.json.example
  • odoo_mcp_policy.json.example
  • pyproject.toml
  • README.md
  • run_server.py
  • SECURITY.md
  • server.json
  • smithery.yaml
  • SUPPORT.md
  • uv.lock

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More connectors

Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface

86k

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph β€” average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

43k

Universal provider proxy for OpenAI Codex & Claude Code β€” use any LLM (Claude, Gemini, Grok, DeepSeek, Ollama…) with Codex CLI, App, SDK, and Claude Code

14k
okf-memory/
okf-agent-memory

Git-native persistent memory for AI coding agents. Implements Google OKF v0.2 with sub-300Β΅s in-memory BM25 search, embedded MCP server, and progressive disclosure. Slashes token bloat by 80% with zero external databases or dependencies. Built in pure Go.

547
tirth8205/
code-review-graph

Local-first code intelligence graph for MCP and CLI. Builds a persistent map of your codebase so AI coding tools read only what matters, with benchmarked context reductions on reviews and large-repo workflows.

31k
2akouwu/
reverify

Stop your AI from making things up β€” it proposes, deterministic tools decide, every claim checked against ground truth with evidence. Grounded facts and context survive resets. Reverse engineering is the proving ground. MCP server + CLI.

1.1k