Detect when AI code changes exceed declared task scope (MCP server)
Project description
越权检测 — Authority Boundary Detector (MCP server)
Detects when AI code changes exceed declared task scope. Designed to plug into Cursor, Claude Code, and other MCP-compatible AI coding agents via the standard stdio transport.
Compares two things:
- Declared scope — the files (as fnmatch globs) and categories (tests, docs, infra, config, code) the task is allowed to touch.
- Actual diff — the files the AI actually modified.
If the actual diff exceeds the declared scope, the tool returns status=over_reach and lists the offending files and categories.
Install
From PyPI (after 0.0.4 release):
pip install over-reach-detector
From source:
git clone https://github.com/choreoatlas/over_reach_detector
cd over_reach_detector
pip install -e .
Quick start
Run all tests: python -m pytest -v
Try the CLI directly: python -m over_reach_detector.detector --input fixtures/example_pr_1.json --format markdown
Use as MCP server
Start the server (stdio transport): over-reach-detector (or python -m over_reach_detector.server from source)
Register with your AI agent:
- Cursor: in
~/.cursor/mcp.json, add (afterpip install over-reach-detector):
{
"mcpServers": {
"over-reach-detector": {
"command": "over-reach-detector"
}
}
}
Dev / from source: use "command": "python", "args": ["-m", "over_reach_detector.server"] (run from repo root).
- Claude Code: after
pip install over-reach-detector, runclaude mcp add over-reach-detector over-reach-detector(writes to~/.claude.json). Dev / from source:claude mcp add over-reach-detector /absolute/path/to/python -m over_reach_detector.server.
The tool
check_scope_tool takes:
declared_files: list of fnmatch globs (e.g.["docs/*.md", "tests/*.py"])declared_categories: subset of["tests", "docs", "infra", "config", "code"]actual_files: list of file paths the AI modifiedoutput_format:"json"(default) or"markdown"
Returns a report with:
status:in_scope(safe) |over_reach(block) |emptyfile_overreach: files not matching any declared globcategory_overreach: inferred categories outside the declared set
Scope discipline
Current scope: CLI + MCP stdio server + 1 tool. Python only. fnmatch-based globs.
Out of scope (forbidden): code quality review, security audit, completeness governance, languages other than Python, multi-tool MCP servers, HTTP/SSE transport, GitHub Actions integration. These are deliberately deferred to later versions or never.
Example usage
Call check_scope_tool directly from Python (same logic the MCP server exposes):
import json
from over_reach_detector import server
result = server.check_scope_tool(
declared_files=["docs/*.md"],
declared_categories=["docs"],
actual_files=["docs/a.md", "scripts/extra.py"],
output_format="json",
)
report = json.loads(result)
print(report["status"]) # "over_reach"
print(report["file_overreach"]) # ["scripts/extra.py"]
License
MIT — see LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file over_reach_detector-0.0.4.tar.gz.
File metadata
- Download URL: over_reach_detector-0.0.4.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59dfbe2171785d57e9a4d4a55b6f29caedb805fe3a89aab51e319c3eacd0b161
|
|
| MD5 |
848063cdd68d5e393be357bfea58b065
|
|
| BLAKE2b-256 |
ea6a7138182ab39c95a6fb77086a7dbf6d714178074f1eff30a354847dceb8af
|
File details
Details for the file over_reach_detector-0.0.4-py3-none-any.whl.
File metadata
- Download URL: over_reach_detector-0.0.4-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3af4bae282ee929445f496a75b1352d68653a1802e302fdeec547b3362248509
|
|
| MD5 |
69b791738ac27906f7513f1e199fd3c9
|
|
| BLAKE2b-256 |
da3037bab6f8de927b41fec609807d17beda4c71f9f8761764b15addbbac3e07
|