repolens
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@repolensPack repo with 2000 token budget, focusing on auth"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
repolens
Turn any repository into a deterministic, token-budgeted, AST-aware context pack for LLM agents — with a hash-chained provenance row for every file it reads.
repolens is a zero-dependency Python tool (standard library only for the core) and an MCP server. It exists for one job: give an autonomous agent exactly the context it can afford, in a form that is reproducible, auditable, and structurally aware of the code it describes.
A Cognis Digital flagship tool.
Why these properties matter
Most "AI code context" tooling optimizes for a compression headline and produces output that is nondeterministic, unbudgeted, structurally blind, and unauditable. When that output feeds an agent that edits your code, four different properties are what actually matter:
Reproducibility. The same repository bytes must always yield the same pack — byte for byte. That makes packs diffable in review, cacheable in CI, and safe to reason about. If a pack changes, it is because the repository changed, not because a model or a clock did.
An exact token budget. An agent has a finite context window and a finite spend. "Roughly smaller" is not a budget. repolens fits a repository into a precise token ceiling and degrades gracefully when it must.
Real structure. Signatures, imports, and call edges are worth far more per token than raw text. A language-aware map lets the pack say what the code is even when there is no room to include all of the code.
A tamper-evident record. When something goes wrong downstream, you need to prove precisely what context was produced from which bytes. repolens emits a hash-chained provenance manifest that makes any alteration detectable.
repolens delivers all four.
Related MCP server: LogicMem MCP Server
Features
Deterministic context pack. Stable ordering plus content addressing: the same repository bytes always produce a byte-identical pack. The pack's digest is the head of its provenance chain, so equal digests provably mean equal inputs read in the same order.
Exact token budgeting with graceful degradation. Give
--budget Nand repolens fits the repo intoNtokens, degrading each file throughfull body → signatures → names → omitin priority order. A pluggable tokenizer abstraction ships with a deterministic heuristic estimator by default and a character-ratio estimator; real model tokenizers can be registered without touching the pipeline.AST-aware maps. Python is parsed with the standard-library
astfor exact symbols, signatures, imports, and intra-module call edges. JavaScript/TypeScript, Go, Rust, and Java use lightweight, clearly structured heuristic extractors that report symbols, kinds, signatures, and imports — designed so a full parser can be dropped in behind the same interface later.Keyless relevance ranking. A dependency-free BM25 implementation ranks files against a free-text query so the budget is spent on what matters. An optional local-embedding ranker is a clearly marked extension point; BM25 is always available and needs no keys, downloads, or network.
Hash-chained provenance. Every file read emits a SHA-256 audit row
(index, path, content_hash, size), and each row commits to the previous row's hash. Reordering, inserting, deleting, or altering any row breaks the chain — andverifyreports the exact first bad row.Multiple output formats. Compact text, JSON, Markdown, and XML-tagged prompt blocks.
.gitignore-aware discovery, and a secret-redaction pass strips common key/token formats before anything leaves the repository.MCP server. A minimal, self-contained JSON-RPC/stdio MCP server exposes a
packtool (and averifytool). Agents request a budgeted context pack for a path or query and get the manifest back.Honest benchmarks. A benchmark harness compares repolens against a naive find + concatenate baseline on bytes, tokens, and wall-clock.
Install
pip install .
# or, for development:
pip install -e ".[dev]"Requires Python 3.11+. The core has zero third-party runtime dependencies; pytest is used only for tests.
CLI
# Build a compact text pack that fits in 8000 tokens
python -m repolens pack . --budget 8000
# Rank against a query and emit XML-tagged prompt blocks
python -m repolens pack . --query "auth middleware" --budget 4000 --format xml
# JSON pack (includes the full provenance manifest) written to a file
python -m repolens pack . --format json -o pack.json
# Re-verify a JSON pack's provenance chain
python -m repolens verify pack.json
# Benchmark against the naive find + cat baseline
python -m repolens bench . --budget 8000
# Run the stdio MCP server
python -m repolens mcpA repolens console entry point is installed as well, so repolens pack . works once installed.
Useful flags
Flag | Effect |
| Exact token budget (omit for unlimited) |
| BM25 relevance query |
|
|
|
|
| Do not honor |
| Disable secret redaction |
| Include binary files |
| Omit the provenance manifest from output |
| Truncate file bodies larger than |
| Follow symlinks (off by default so a pack cannot escape the repo) |
| Print pack statistics to stderr |
Library API
from repolens import pack_repo, render
pack = pack_repo("path/to/repo", query="database pool", budget=8000)
print(render(pack, "markdown"))
print("digest:", pack.digest)
print("provenance verified:", pack.manifest.verify().ok)
for f in pack.included_files:
print(f.relpath, f.language, f.level, f.tokens)Everything is a pure data object: pack_repo(...) returns a ContextPack, and the formatters are pure functions of it.
Determinism, precisely
Two runs over the same bytes produce identical output because every stage is deterministic:
Files are discovered in sorted, forward-slash path order.
Provenance rows are recorded in that order and chained by SHA-256.
Ranking ties break by path; budgeting is a deterministic greedy pass.
JSON is emitted with sorted keys and fixed separators; all formats use
\nnewlines.
The included test suite proves byte-identical output across repeated runs and across independent copies of the same content.
Provenance model
Each row commits to its own fields and the previous row's hash:
row_hash = sha256("repolens-provenance-v1\n" + index + "\n" + path + "\n"
+ content_hash + "\n" + size + "\n" + prev_hash)The first row's prev_hash is 64 zero hex characters (the genesis sentinel). The manifest head — the last row's hash — is a single value that commits to the whole read. An auditor can recompute the entire chain from the raw repository bytes.
Extending
Tokenizers. Subclass
repolens.tokenizer.Tokenizer, implementcount, and callregister_tokenizer(name, factory).Language extractors. Implement the
Extractorinterface inrepolens.languages.baseand register it; the heuristic extractors are structured so a real parser can replace any of them without changing the rest of the system.Ranking.
embedding_rankis the hook for an optional local-embedding ranker; BM25 remains the keyless default.
Testing
python -m pytest -qThe suite covers determinism, token budgeting and graceful degradation, each AST/heuristic extractor, .gitignore semantics, binary/unicode/empty/huge-file edge cases, secret redaction, the provenance chain and its tamper cases, the four output formats, the benchmark harness, the CLI, and the MCP endpoint.
License
MIT © 2026 Cognis Digital LLC. See LICENSE.
Available Tools
2 toolspackA
Build a deterministic, token-budgeted, AST-aware context pack for a repository path or query and return it with a hash-chained provenance manifest of exactly what was read.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | repository or file path | |
| query | No | optional BM25 relevance query | |
| budget | No | exact token budget | |
| format | No | output format (default text) | |
| redact | No | redact secrets (default true) | |
| tokenizer | No | tokenizer name (default heuristic) | |
| respect_gitignore | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It discloses key behaviors like determinism, token budgeting, AST awareness, and provenance manifest generation. However, it does not state whether the tool is read-only, any authentication needs, rate limits, or side effects, leaving some uncertainty.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that efficiently packs many details. It is front-loaded with the main action. While slightly long, every phrase adds value, making it effective without being overly verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description explains the tool's purpose and key behaviors but lacks details about the output structure (no output schema) and does not describe the provenance manifest contents. For a tool with 7 parameters and no annotations, more details on results and usage context would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is high (86%), so parameters are mostly documented. The description adds holistic context (e.g., that the pack is token-budgeted gives meaning to 'budget'), but does not detail individual parameters beyond what the schema already provides. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb (Build), resource (context pack), and key characteristics (deterministic, token-budgeted, AST-aware, provenance manifest). It distinguishes from the sibling tool 'verify' by focusing on building a pack.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for building context packs from repository paths or queries but provides no explicit guidance on when to use this tool versus alternatives, nor any when-not-to-use conditions. The distinction from 'verify' is not addressed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verifyC
Verify a provenance manifest (list of rows) is an unbroken hash chain.
| Name | Required | Description | Default |
|---|---|---|---|
| provenance | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description does not disclose behavioral traits such as what happens on verification failure (e.g., error vs boolean return), side effects, or security/permission requirements. The description carries the full burden but only states the core verification purpose.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence that is front-loaded and concise. However, it sacrifices necessary detail for brevity, making it less informative than it could be.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, no annotations, and only one parameter with 0% schema coverage, the description is insufficient. It does not explain return values, error behavior, or structure of the 'provenance' array, leaving the agent underinformed for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate. It identifies that 'provenance' is a list of rows, which adds slight meaning beyond the schema's 'type: array', but does not explain the structure of rows or constraints, leaving significant ambiguity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the verb 'Verify' and the resource 'provenance manifest' with the specific purpose of checking it forms an unbroken hash chain, distinguishing itself from the sibling tool 'pack' which likely creates such manifests.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. The only sibling is 'pack', but no context is given about when verification is appropriate or when packing would be preferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
v0.1.0- First observed
pack - First observed
verify
TDQS
The two tools have clearly distinct purposes: pack builds a context pack with a provenance manifest, while verify checks the integrity of that manifest. No overlap or ambiguity.
Both tool names are imperative verbs (pack, verify), following a simple and consistent pattern. No mixing of styles or conventions.
With only 2 tools, the set feels thin for a general-purpose server. While the tools are focused, the count is borderline according to calibration guidelines (1-2 tools is considered thin).
The server fully covers its stated purpose: building a context pack with a provenance manifest and verifying the manifest's integrity. There are no obvious gaps for this narrow domain.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Shared, versioned context that humans and AI agents can publish, review, annotate, and continue.
Shared, permission-aware company context for AI agents, with provenance, approvals and audit.
Compact, citation-verifiable public web context for AI agents, paid per use with x402.
Cross-agent artifact workspace with provenance across Claude Code, Codex, Cursor, LangGraph.
Related MCP Servers
- AlicenseBqualityBmaintenanceEnables LLM agents to compress handoffs into structured, auditable context capsules, preserving goals, constraints, decisions, and risks without external API calls.320MIT

LogicMem MCP Serverofficial
AlicenseBqualityBmaintenanceProvides persistent memory, reasoning, agent-to-agent sharing, and immutable audit trail for AI agents via the Model Context Protocol.121MIT- FlicenseNot gradedqualityBmaintenanceLocal-first deterministic project memory for AI coding agents, with context packs, decisions, gates, risks, scoped claims and explicit checkpoints in project-owned files.-
- AlicenseAqualityBmaintenanceCross-model, cryptographically verifiable memory for AI agents, enabling portable, encrypted memory and project state management across different LLMs through the Model Context Protocol.2482MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cognis-digital/repolens'
If you have feedback or need assistance with the MCP directory API, please join our Discord server