Skip to main content

Static code analysis + knowledge-graph for AI coding agents — 10 languages, cut token costs by 83–92 %

Project description

Aethvion Project Mapper

Static code analysis + knowledge-graph for AI coding agents.
Give your AI the map it needs — before it starts writing code.


Why it exists

AI coding agents (Claude Code, Cursor, Copilot, etc.) read your entire codebase on every task. That's expensive, slow, and often inaccurate because context windows fill up before the agent sees the relevant files.

Project Mapper scans your codebase once, builds a structured knowledge graph of every module, class, function, and their relationships, and lets agents query only what they need — in milliseconds, at a fraction of the token cost.

New here? The docs/explained/ folder covers what Project Mapper is, what MCP tools are, and exactly what PM reads and stores on your machine.


Benchmark numbers

Measured across 10 real-world codebases — Python, Java/Kotlin, C#, PHP, C, Ruby, TypeScript/JS, Rust, C++, Swift — ranging from 57 to 11,083 files.

Token reduction (geometric mean across 10 benchmarks)

Normal (Grep + Read) PM Full PM Slim
Tokens per query baseline ~6× less ~13× less
At 100,000 input tokens 100,000 ~17,000 ~7,700

PM Slim returns name + file path + line number only — enough for navigation and refactoring tasks. PM Full returns complete entity context. See the benchmark suite for per-codebase numbers.

Query latency (measured)

Query Latency
Context query 10–100 ms (warm cache)
Impact query 10–60 ms

Session startup — entity map load (measured)

The entity map is stored as a single snapshot file built at the end of each scan.

Codebase size Load time
~400 entities < 50 ms
~12,000 entities ~145 ms
~33,000 entities ~300 ms

Financial impact at scale (modelled)

Modelled from the measured ~6× Full / ~13× Slim token reduction (geomean, 10 codebases). Assumes 10 tasks/dev/day, 8 turns/task, Claude Sonnet pricing. See the cost calculator for your own numbers.

Team size Monthly AI coding cost (est.) Savings with PM
Solo developer $80 $74
10-person team $2,400 $2,230
100-person team $48,000 $44,600
Enterprise (1,000 devs) $480,000 $446,400

What it does

  1. Static scan — walks your project, extracts every module / class / function via AST analysis. No AI needed for this step.
  2. Knowledge graph — stores entities + relationships (imports, calls, extends, depends_on, …) in a local JSON database.
  3. Agent queries — 7 MCP tools that agents call instead of reading raw files:
Tool What it answers
pm_context "What should I know before touching the auth system?"
pm_impact "What breaks if I change UserService?"
pm_path "How does RateLimiter connect to the payment flow?"
pm_contribute "Record that I added rate limiting to endpoint X"
pm_stats "What's already indexed in this database?"
pm_delta "What changed since the last scan?"
pm_scan "Scan this project directory right now"

Quick start

HTTP API

# Install
pip install aethvion-project-mapper

# Start server
uvicorn server:app --port 7474

# Scan your project
curl -X POST http://localhost:7474/api/project-mapper/scan \
  -H "Content-Type: application/json" \
  -d '{"project_root": "/path/to/your/project", "enrich": false}'

# Query context for a task
curl -X POST http://localhost:7474/api/project-mapper/query/context \
  -H "Content-Type: application/json" \
  -d '{"q": "add rate limiting to auth endpoints", "detail_level": "medium"}'

Docs at http://localhost:7474/docs

Docker

docker compose up
# Server running at http://localhost:7474

Mount your projects:

# docker-compose.yml — set PROJECTS_DIR to your code root
PROJECTS_DIR=/home/you/code docker compose up

MCP stdio (Claude Code / Cursor / Antigravity / Codex)

Detailed step-by-step setup guides (including Windows and Linux/macOS paths) are in docs/howto/.

A single global config gives every session access to Project Mapper. The AI passes the project root when it calls pm_scan, so you don't need to specify it upfront — just tell Claude (or Cursor, etc.) to scan the current project and it handles the rest.

Prerequisite — install uv (one-time, skippable if you already have it):

# macOS / Linux
curl -LsSf https://astral.sh/uv/install.sh | sh

# Windows (PowerShell)
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

# Or via pip
pip install uv

uv manages its own Python environment, so you do not need Python pre-installed.

Claude Code — add to ~/.claude/settings.json:

{
  "mcpServers": {
    "project-mapper": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "--from", "aethvion-project-mapper[languages]",
        "pm-mcp",
        "--db", "workspace"
      ]
    }
  }
}

Cursor — add to .cursor/mcp.json:

{
  "mcpServers": {
    "project-mapper": {
      "command": "uvx",
      "args": [
        "--from", "aethvion-project-mapper[languages]",
        "pm-mcp",
        "--db", "workspace"
      ]
    }
  }
}

Antigravity (Google) — add to ~/.gemini/antigravity/mcp_config.json:

{
  "mcpServers": {
    "project-mapper": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "--from", "aethvion-project-mapper[languages]",
        "pm-mcp",
        "--db", "workspace"
      ]
    }
  }
}

All three agents use the same mcpServers format — only the config file location differs. Restart the agent after editing the config.

Optional — pin to a single project:
If you always work on one codebase, add PM_PROJECT_ROOT so the AI never needs to specify it:

{
  "mcpServers": {
    "project-mapper": {
      "...",
      "env": { "PM_PROJECT_ROOT": "/absolute/path/to/your/project" }
    }
  }
}

The workspace database is shared — scanning a new project overwrites the previous one. This is fine for single-project sessions; incremental scans on a pre-indexed repo typically finish in under 2 s.


Configuration

Variable Default Description
PM_DATA_DIR ~/.aethvion_pm/data Root directory for all databases
PM_LOG_LEVEL INFO Log level: DEBUG / INFO / WARNING / ERROR
PM_DB_NAME default MCP server: database name
PM_DB_PATH (unset) MCP server: explicit database path
PM_PROJECT_ROOT (unset) MCP server: default project root for pm_scan

Project structure

project_mapper/
├── config.py          — DATA_DIR config
├── routes.py          — FastAPI router (/api/project-mapper/*)
├── scanner.py         — Async background scan engine
├── ingestor.py        — CodeAnalysis → AethvionDB entities
├── code_analyzer.py   — Python AST extractor
├── query.py           — Impact / context / shortest-path algorithms
├── cleanup.py         — Incremental scan maintenance
├── delta.py           — Filesystem diff (no DB writes)
├── mcp_tools.py       — 7 MCP tool schemas + handlers
├── mcp_server.py      — JSON-RPC 2.0 stdio MCP server
└── db/
    ├── entity_schema.py   — Entity data model + validation
    ├── entity_writer.py   — Create / update / delete entities
    ├── name_index.py      — Thread-safe name → ID index
    ├── file_manifest.py   — File ↔ entity provenance tracking
    ├── snapshot.py        — Fast-load snapshot cache
    └── db_registry.py     — Named database registry
server.py              — FastAPI app entry point

Incremental scanning

Subsequent scans only process files whose SHA-256 hash has changed since the last run. On a 10,000-file repo that's been scanned before, incremental mode typically processes < 1 % of files — scan time drops from ~60 s to < 2 s.

# Full scan (first time or force refresh)
curl -X POST .../scan -d '{"project_root": "...", "incremental": false}'

# Incremental scan (default — only changed files)
curl -X POST .../scan -d '{"project_root": "..."}'

License

Open-source core: GNU AGPL v3
Free to use, modify, and self-host. Network use requires open-sourcing your modifications.

Commercial license: COMMERCIAL_LICENSE.md
Available for teams that need a proprietary license, SLA, or integration support.


Contributing

Pull requests are welcome. By submitting a PR you agree to the Contributor License Agreement (§2).

git clone https://github.com/Aethvion/Aethvion-ProjectMapper
cd Aethvion-ProjectMapper
pip install -e ".[dev]"
pytest

Built with care by the Aethvion team.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aethvion_project_mapper-1.5.1.tar.gz (128.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aethvion_project_mapper-1.5.1-py3-none-any.whl (147.0 kB view details)

Uploaded Python 3

File details

Details for the file aethvion_project_mapper-1.5.1.tar.gz.

File metadata

  • Download URL: aethvion_project_mapper-1.5.1.tar.gz
  • Upload date:
  • Size: 128.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for aethvion_project_mapper-1.5.1.tar.gz
Algorithm Hash digest
SHA256 122b57e7fa8555abce78037fb7c2ab1ae2e085027f93804b313dbcd91abb3b50
MD5 9f331c7089f409f09565fabf263f779f
BLAKE2b-256 052d8d025549cc35257da74000063367d4e7b01b1336c3ebaab03f0bd3c8099c

See more details on using hashes here.

File details

Details for the file aethvion_project_mapper-1.5.1-py3-none-any.whl.

File metadata

File hashes

Hashes for aethvion_project_mapper-1.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3bbdee0a338f803c539a656ee6673849e451c187861e4f7fcfd5545605a62466
MD5 d4489d8438f0a445a9747246b0a04132
BLAKE2b-256 d5023eea41bfbd091d34beb8ea871f792ff966f0526bfebce0d25bb306b075cb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page