Tokenlens Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Tokenlens Mcp (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 TokenLens pricing data as tools for AI agents (Claude Code, Cursor, Windsurf, Claude Desktop, etc.).
| Tool | Description |
|---|---|
compare_plans | Rank all plans by effective cost/1M tokens for a given model |
run_scenario | Calculate API vs subscription cost for a usage pattern |
break_even | Find the daily hours where API cost equals a subscription price |
recommend_plan | Single best-value plan for your usage profile |
git clone https://github.com/flikQ/tokenlens-mcp.git
cd tokenlens-mcp
npm install # or: bun install
npm run build # or: bun run buildClaude Code (one command):
claude mcp add tokenlens -- node /path/to/tokenlens-mcp/dist/index.jsTo always use live pricing data from tokenlens.flikq.dev:
claude mcp add tokenlens -- env TOKENLENS_DATA_URL=https://tokenlens.flikq.dev/api/data node /path/to/tokenlens-mcp/dist/index.jsCursor · Windsurf · Claude Desktop — add to config JSON:
~/.cursor/mcp.json~/.codeium/windsurf/mcp_config.json~/Library/Application Support/Claude/claude_desktop_config.json{
"mcpServers": {
"tokenlens": {
"command": "node",
"args": ["/path/to/tokenlens-mcp/dist/index.js"],
"env": {
"TOKENLENS_DATA_URL": "https://tokenlens.flikq.dev/api/data"
}
}
}
}Restart your editor, then ask your agent:
Use the tokenlens recommend_plan tool. I code 3h/day on claude-sonnet.By default the server reads bundled data/*.json files from the repo. To always use the latest live pricing data, set:
TOKENLENS_DATA_URL=https://tokenlens.flikq.dev/api/dataThe server fetches all data at startup and caches it in memory. If the URL is unreachable it automatically falls back to the bundled local files.
You can also point at a custom data directory:
TOKENLENS_DATA_DIR=/path/to/custom/dataMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.