Skip to main content

Surgical AST-based Python editing for AI agents — edit by symbol name, not text position. Built-in blast radius and token cost on every edit.

Project description

tokenspace-mcp

Surgical AST-based Python editing for AI agents — edit by symbol name, not text position. Built-in blast radius and token cost on every edit.

pip install tokenspace-mcp

Why

AI coding agents (Claude Code, Cursor, Aider) edit Python via string replacement or line numbers. This forces the agent to echo the old code to locate the edit, then echo the entire new file as output. On large files that wastes thousands of tokens per edit.

Tokenspace exposes four MCP tools that operate on symbol names:

edit_function_body("auth.py", "validate_token", new_body)

No echoing. No stale line numbers. Every edit returns a diff, a blast radius score, and a token cost — automatically.

Benchmark

Measured on 406 real functions across 10 popular OSS projects (requests, flask, fastapi, django, httpx, pydantic, black, click, rich). All files verified with libcst round-trip.

Scenario str_replace Tokenspace Reduction
Single edit — 406 functions total 36,907 tokens 18,674 tokens 49.4%
5 edits / same file — 10 files total 70,948 tokens 2,039 tokens 95.4%

The multi-edit gap is large because str_replace pays the full file on every call. Tokenspace pays for read_structure once and only the function name + new body per subsequent edit.

MCP Tools

Tool What it does
read_structure File skeleton — signatures and line ranges, no bodies. ~3.4× cheaper than reading the file.
edit_function_body Replace a top-level function body by name. Writes to disk. Returns diff + metrics.
edit_class_method Replace a class method body by name. Writes to disk. Returns diff + metrics.
measure_edit Dry-run: compute blast radius and token cost without writing.

Metrics returned on every edit

  • blast_radius — fraction of the file's symbols whose signature changed (0.0 = nothing changed structurally)
  • patch_locality — how contained the edit is (1.0 = perfectly local)
  • token_cost — tiktoken count of input + diff output

Install

pip install tokenspace-mcp
tokenspace install-skill

Then restart Claude Code. Tokenspace tools will be available automatically.

The second command:

  • Copies the Claude Code skill to .claude/SKILL.md
  • Registers the MCP server in .claude/settings.json
  • After restart, Claude Code knows when and how to use all 4 tools

Optimal workflow

1. read_structure(file_path)          → locate symbols, costs ~200 tokens
2. measure_edit(file_path, fn, body)  → dry run, check blast_radius
3. edit_function_body / edit_class_method  → write if metrics look good
4. Check result: success, diff, blast_radius, patch_locality, token_cost

For multiple edits on the same file, call read_structure once and skip measure_edit — the multi-edit token reduction reaches 95.4%.

Requirements

  • Python ≥ 3.12
  • Works with any MCP-compatible host (Claude Code, Continue, custom agents)

License

MIT

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

tokenspace_mcp-0.1.0.tar.gz (247.7 kB view details)

Uploaded Source

Built Distribution

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

tokenspace_mcp-0.1.0-py3-none-any.whl (12.4 kB view details)

Uploaded Python 3

File details

Details for the file tokenspace_mcp-0.1.0.tar.gz.

File metadata

  • Download URL: tokenspace_mcp-0.1.0.tar.gz
  • Upload date:
  • Size: 247.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for tokenspace_mcp-0.1.0.tar.gz
Algorithm Hash digest
SHA256 bb049d05b2eb5d24bdd7271514c49c675ae814f59f7cbfb701209c914541b972
MD5 8695de6dc0c711085d15753bfdcfe084
BLAKE2b-256 3f8aac6297dabe7cba9416b6d278757f0db969fb55fd76df7bcaa6c0f1defd71

See more details on using hashes here.

File details

Details for the file tokenspace_mcp-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: tokenspace_mcp-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for tokenspace_mcp-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 964d36c319be0189ada9fa3e8b1c99933194f911318af75c424a644ace44ad30
MD5 e07d2161158a055a30a1bb51105a4db9
BLAKE2b-256 c42549778a1584a910c7abbd524c9157bd74ceef8ea76abffb917d7f65c63f69

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