The code-review MCP that reviews your merge request against the whole codebase, not just the diff
Project description
myopic
The code-review MCP with the most ironic name in the registry. It's anything but nearsighted — it reviews your merge request against the whole codebase, not just the diff in front of it.
⚠️ Alpha / building in public. Reviews GitLab merge requests and GitHub pull requests — pass either URL. Reads the change, reviews it against the whole codebase, and can post the review back as inline comments. Follow along, open issues, pitch in. Don't wire it into a critical workflow just yet.
Why
Most AI code review looks at the diff in isolation. But the bugs that matter live in what the diff doesn't show: the caller three files away that now breaks, the convention every sibling file follows that this one quietly drops, the helper that already exists so this new one is a duplicate. A reviewer that only reads the patch is myopic.
myopic is an MCP server that feeds your AI client (Claude, Cursor, …) the structured context to review like someone who actually knows the codebase:
- Read the change precisely — the diff as line-numbered hunks or grouped by function/class, token-safe on any MR size (a 10,000-line diff never overflows the context window).
- Review it against the whole codebase — who calls the changed code (blast radius), the caller/callee graph, and — optionally — semantically similar code so you catch broken conventions and duplication.
It pairs with amnesic, my MCP server that gives AI persistent memory of SQL databases.
Tools
Everything below works today unless marked planned.
Read the merge request (token-safe by construction):
| Tool | What it does |
|---|---|
mr_review_status |
MR metadata + every discussion thread + resolved/unresolved, in one call |
mr_changed_files |
a content-free manifest of changed files (paths, stats, noise flags) — always fits, any MR size |
mr_diff_sections |
the diff grouped by function/class (AST-aware), budget-bounded |
mr_diff_lines |
the diff as line-numbered hunks — exact positions for inline comments — budget-bounded |
On a large MR, the diff tools return a bounded page and list the rest under
omitted_files / truncated instead of failing; lockfiles, generated code, and
binaries are listed but not expanded. Fetch the rest with files_filter.
Review against the whole codebase (point at a local clone):
| Tool | What it does |
|---|---|
dependency_impact |
everywhere a changed symbol is used — the blast radius (ripgrep + tree-sitter) |
trace_call_chain |
the caller/callee graph of a symbol |
mr_review_context |
the headline — for each changed symbol: its impact (always), plus semantically similar code when the optional layer is enabled |
Optional semantic layer (myopic[semantic]) — index_repo, code_search,
and the semantic half of mr_review_context. See below.
Close the loop — verify, and (on request) comment:
| Tool | What it does |
|---|---|
mr_verify_review |
for each existing review thread, the diff changes near the commented line — did a follow-up commit address it? (read-only) |
mr_post_comments |
the one write — post inline comments, one at a time from a queue with exponential backoff (no drafts, no bulk-publish), so partial progress survives and rate limits are respected |
See ROADMAP.md for what's next.
Install
myopic is a server your AI client launches and keeps running, so install it once into a dedicated venv and point the client at a fixed path — nothing re-resolves on every launch:
python3 -m venv ~/.venvs/myopic
~/.venvs/myopic/bin/pip install myopic # add "[semantic]" for the optional layer
The console script is now at ~/.venvs/myopic/bin/myopic. That's the command
your client runs (see Add to your AI client).
Prefer uvx?
If your uv install is healthy you can skip the venv and run uvx myopic
directly. It re-resolves the package on each launch and depends on uv's tool
directory being writable — if you hit failed to create directory .../uv/tools: Permission denied, use the venv install above instead.
Setup
myopic needs a GitLab URL and a personal access token with api (or read_api)
scope. The interactive wizard walks you through it:
~/.venvs/myopic/bin/myopic init # prompts for URL + token, verifies, saves both
~/.venvs/myopic/bin/myopic test # ✓ Authenticated to https://gitlab.com as <you>
The token is saved to ~/.config/myopic/.env (chmod 600) and referenced from the
TOML as ${GITLAB_TOKEN} — it never lives in the config file. Rotate it any time
with myopic set-secret. Prefer to hand-edit? myopic init --template.
Reviewing GitHub PRs? myopic reviews GitHub pull requests too — just give it
a PR URL. It needs a GitHub token (a PAT with pull-request read access). Set
it via GITHUB_TOKEN in your environment / the .env, or add a [github]
section to config.toml (see myopic init --template). For GitHub Enterprise,
set [github].url to your instance host. Public github.com needs no URL.
Add to your AI client
Claude Code (~/.claude/mcp.json or project .mcp.json), Cursor, Claude
Desktop, and other MCP clients all point at the installed binary — an absolute
path, so the client never depends on your shell PATH:
{
"mcpServers": {
"myopic": {
"command": "/home/you/.venvs/myopic/bin/myopic"
}
}
}
Use your real home directory (~ isn't expanded inside JSON). On a healthy
uvx setup you can instead use "command": "uvx", "args": ["myopic"].
Use
Point your AI at a merge request:
"Review this MR: https://gitlab.com/group/project/-/merge_requests/42"
A good flow the client can follow: mr_changed_files to see the shape →
mr_diff_sections (large MRs) or mr_diff_lines to read the change → then, with
a local clone checked out, dependency_impact / trace_call_chain (or
mr_review_context) on the risky changed symbols to review against everything
that depends on them.
Optional: semantic search (myopic[semantic])
For "is this consistent with the rest of the codebase?" — duplication, convention drift, similar patterns — enable the semantic layer. It's opt-in so the base install stays lean (no torch, no heavyweight vector DB):
~/.venvs/myopic/bin/pip install "myopic[semantic]" # adds lancedb + httpx only
ollama pull unclemusclez/jina-embeddings-v2-base-code # a small, code-specialized model
It embeds your code locally via Ollama and stores it in an
embedded LanceDB index with native hybrid (vector + full-text)
search. Then the AI can index_repo a checked-out repo and mr_review_context
will enrich each changed symbol with semantically similar code. Without the extra,
mr_review_context still works — it just returns the structural (graph) signal.
Indexing is incremental and freshness-aware. The first index_repo is a full
build; after that only files whose content changed are re-embedded, so refreshing
is cheap. index_status(root) reports whether the index is fresh, stale (with
how many commits behind HEAD), or built on a different model — freshness is keyed
to the git commit it was indexed from, not wall-clock time. code_search and
mr_review_context carry that status so a stale index never silently degrades a
review; the AI is told to offer a refresh when it's stale.
myopic is a stdio server (no background process), so there's no built-in
scheduler — but myopic index /path/to/repo is the hook for one. Point cron or
launchd at it to keep an index fresh out of band:
# refresh hourly (incremental — usually seconds)
0 * * * * ~/.venvs/myopic/bin/myopic index /path/to/repo
Override the model/endpoint with MYOPIC_EMBED_MODEL / MYOPIC_OLLAMA_URL.
Configuration reference
| Source | Key | Notes |
|---|---|---|
config.toml |
[gitlab].url |
GitLab base URL (default https://gitlab.com) |
config.toml |
[gitlab].token |
use ${GITLAB_TOKEN} — don't hardcode |
.env (next to config) |
GITLAB_TOKEN |
the actual token value (chmod 600) |
| env var | MYOPIC_GITLAB_URL / GITLAB_URL |
fallback if no TOML |
| env var | MYOPIC_GITLAB_TOKEN / GITLAB_TOKEN |
fallback if no TOML |
| env var | MYOPIC_CONFIG / MYOPIC_HOME |
override the config file / directory |
| env var | MYOPIC_EMBED_MODEL / MYOPIC_OLLAMA_URL |
semantic layer model + endpoint |
Security
- One explicit write, everything else read-only. Only
mr_post_commentsmutates a review, and only when you ask for it — every other tool just reads MR and repo data. The write is never speculative. - Your token stays local. It lives in your
.env/ environment and is sent only to your configured GitLab instance — never to any third party. - Auth errors are scrubbed so your token never leaks into error messages.
- The optional semantic layer runs entirely locally (your Ollama, an on-disk index) — your code is never sent to a third party.
Development
pip install -e ".[dev]" # + ".[semantic]" to work on the semantic layer
pytest # hermetic — no network, Ollama, or lancedb needed
License
MIT © Suraj Goyal
mcp-name: io.github.SurajKGoyal/myopic
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 myopic-0.0.4.tar.gz.
File metadata
- Download URL: myopic-0.0.4.tar.gz
- Upload date:
- Size: 75.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
388e515953afb4cdd0b72424bb303b8194e24a6b7f1ac1b8ee99ed3c37df27e1
|
|
| MD5 |
d4273c927e1324d13720cfb8754a440c
|
|
| BLAKE2b-256 |
eef1f879253e25ccc331868b085613829efa35b82717fa559bf3290b73d71cd0
|
Provenance
The following attestation bundles were made for myopic-0.0.4.tar.gz:
Publisher:
publish.yml on SurajKGoyal/myopic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
myopic-0.0.4.tar.gz -
Subject digest:
388e515953afb4cdd0b72424bb303b8194e24a6b7f1ac1b8ee99ed3c37df27e1 - Sigstore transparency entry: 2099809652
- Sigstore integration time:
-
Permalink:
SurajKGoyal/myopic@ee5307f5507b78e727277c7ae0109a305e4aac4a -
Branch / Tag:
refs/tags/v0.0.4 - Owner: https://github.com/SurajKGoyal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ee5307f5507b78e727277c7ae0109a305e4aac4a -
Trigger Event:
push
-
Statement type:
File details
Details for the file myopic-0.0.4-py3-none-any.whl.
File metadata
- Download URL: myopic-0.0.4-py3-none-any.whl
- Upload date:
- Size: 71.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccb704e2ebd512ef727dc3c68be177228a7d0fe6cda57312a13712569387a919
|
|
| MD5 |
ecbe03019772b856c722264005efbbaf
|
|
| BLAKE2b-256 |
5e4079b25f9307526acc51f45a85044710a7c9b1f8daa30b90bc0b4a2b6a34f2
|
Provenance
The following attestation bundles were made for myopic-0.0.4-py3-none-any.whl:
Publisher:
publish.yml on SurajKGoyal/myopic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
myopic-0.0.4-py3-none-any.whl -
Subject digest:
ccb704e2ebd512ef727dc3c68be177228a7d0fe6cda57312a13712569387a919 - Sigstore transparency entry: 2099809950
- Sigstore integration time:
-
Permalink:
SurajKGoyal/myopic@ee5307f5507b78e727277c7ae0109a305e4aac4a -
Branch / Tag:
refs/tags/v0.0.4 - Owner: https://github.com/SurajKGoyal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ee5307f5507b78e727277c7ae0109a305e4aac4a -
Trigger Event:
push
-
Statement type: