Let your AI agent audit dependencies before it installs or recommends them.
RepoLens MCP runs locally over stdio. Your agent gets structured JSON, and the MCP server also writes a self-contained local HTML report and opens it in your browser by default — so users get the full RepoLens visual verdict, not just a block of text in chat.
Coding agents constantly choose packages from README text, stars, or stale blog posts. RepoLens gives the agent a dependency due-diligence tool:
“Should I use this repo, what are the risks, and what should I try first?”
scan_repo— verdict-first report: fit, health, pros, cons, red flags, capabilities, bottom line.deep_dive— plain-English architecture explanation, weak spots, assumptions, self-test questions, atoms + lineage.blueprint_scene— graph-shaped architecture map with nodes/edges/positions.compare_repos— compare 2-5 repos/packages for a use case, pick a winner, and open a visual bake-off report.
Single-repo tools accept:
{
"repo": "honojs/hono",
"report": true,
"openReport": true
}compare_repos accepts:
{
"repos": ["honojs/hono", "fastify/fastify", "npm:@tinyhttp/app"],
"useCase": "edge API on Cloudflare Workers",
"report": true,
"openReport": true
}reportdefaults totrueand writes a local.htmlfile.openReportdefaults totrueand opens that file in the browser.- Set
openReport: falseif the agent should only return the report path. - Set
report: falsefor pure JSON/tool-only usage.
The returned JSON includes:
{
"report": {
"path": "/tmp/repolens-mcp-reports/honojs-hono-scan_repo-....html",
"url": "file:///tmp/repolens-mcp-reports/honojs-hono-scan_repo-....html",
"opened": true
}
}After npm publish, the intended one-command path is:
ANTHROPIC_API_KEY=sk-ant-... npx repolens-mcpFrom a repo checkout today:
cd mcp
npm install
export ANTHROPIC_API_KEY=sk-ant-... # one provider key is required
export GITHUB_TOKEN=ghp_... # optional; lifts GitHub 60/hr → 5000/hr
node server.js # speaks MCP over stdioProvider environment variables:
# Auto-pick order: Anthropic → OpenAI → OpenRouter → Google
export ANTHROPIC_API_KEY=sk-ant-...
export OPENAI_API_KEY=sk-...
export OPENROUTER_API_KEY=sk-or-...
export GOOGLE_API_KEY=AIza...
# Optional model overrides
export ANTHROPIC_MODEL=claude-sonnet-4-6
export OPENAI_MODEL=gpt-4.1-mini
export OPENROUTER_MODEL=anthropic/claude-sonnet-4.5
export GOOGLE_MODEL=gemini-2.5-flash
# Force one provider instead of auto-pick
export REPOLENS_MCP_PROVIDER=openai # anthropic | openai | openrouter | google
export REPOLENS_MCP_TIMEOUT_MS=60000Optional report environment variables:
export REPOLENS_MCP_OPEN_REPORT=0 # never auto-open reports
export REPOLENS_MCP_REPORT_DIR=/tmp/reports # custom report directoryA GITHUB_TOKEN is strongly recommended for blueprint_scene and deep_dive:
each makes multiple GitHub calls and anonymous GitHub API limits are low.
Add this to claude_desktop_config.json:
{
"mcpServers": {
"repolens": {
"command": "node",
"args": ["/absolute/path/to/repolens/mcp/server.js"],
"env": {
"ANTHROPIC_API_KEY": "sk-ant-...",
"GITHUB_TOKEN": "ghp_..."
}
}
}
}Use RepoLens to check whether I should use honojs/hono for an edge API.
Before you add this dependency, run RepoLens scan_repo and open the report.
Generate a RepoLens deep_dive for github.com/fastify/fastify and summarize the gaps.
Use blueprint_scene on remix-run/remix so I can see how the repo is structured.
Compare honojs/hono vs fastify/fastify for an edge API and open the RepoLens report.
scan_repo supports all fetcher-backed RepoLens targets:
honojs/hono
https://github.com/honojs/hono
github:honojs/hono
gitlab:inkscape/inkscape
https://gitlab.com/inkscape/inkscape
npm:react
https://www.npmjs.com/package/@modelcontextprotocol/sdk
pypi:fastapi
https://pypi.org/project/fastapi/
deep_dive and blueprint_scene accept the same inputs, but source-tree reads are
GitHub-deep today; non-GitHub targets degrade to README/metadata context.
- Local-only: no hosted backend, no RepoLens account.
- Provider support: Anthropic, OpenAI, OpenRouter, and Google via env keys.
- The Chrome extension still has the richest provider/platform UI; MCP is the agent-native path.
Planned next steps: publish repolens-mcp to npm and add a comparison tool.