Mcp Tldr — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Tldr (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP server that exposes https://github.com/parcadei/llm-tldr code analysis tools to Claude Code (or any MCP client).
tldr CLI installed and in your PATH (install instructions)git clone https://github.com/YOUR_USER/mcp-tldr.git
cd mcp-tldr
python3 -m venv .venv
.venv/bin/pip install -e .Add this to your ~/.claude.json under mcpServers:
{
"mcpServers": {
"tldr": {
"type": "stdio",
"command": "/absolute/path/to/mcp-tldr/.venv/bin/python",
"args": ["server.py"],
"cwd": "/absolute/path/to/mcp-tldr"
}
}
}Replace /absolute/path/to/mcp-tldr with the actual path where you cloned the repo.
Alternatively, if tldr is not in your PATH, set the TLDR_BIN environment variable:
{
"tldr": {
"type": "stdio",
"command": "/absolute/path/to/mcp-tldr/.venv/bin/python",
"args": ["server.py"],
"cwd": "/absolute/path/to/mcp-tldr",
"env": {
"TLDR_BIN": "/path/to/tldr"
}
}
}| Tool | Description |
|---|---|
tldr_tree | File tree of a project |
tldr_structure | Code structure (classes, functions, imports) |
tldr_context | LLM-ready context for a function/class |
tldr_search | Pattern search across files |
tldr_impact | Find all callers of a function |
tldr_calls | Cross-file call graph |
tldr_semantic | Natural language code search |
tldr_arch | Detect architectural layers |
tldr_warm | Pre-build cache for faster queries |
tldr_extract | Full file analysis (classes, functions, methods) |
tldr_cfg | Control flow graph for a function |
tldr_dfg | Data flow graph for a function |
tldr_slice | Program slice (what affects line X) |
tldr_dead | Find unreachable/dead code |
tldr_imports | Parse imports from a file |
tldr_importers | Find all files importing a module |
tldr_change_impact | Find tests affected by changes |
tldr_diagnostics | Type-check and lint diagnostics |
After setup, restart Claude Code. The tools will be available automatically. Example prompts:
handleAuth function"processPayment"~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.