EveryDev.ai
Subscribe
Home
Tools

3,484+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Token Saver
    Token Saver icon

    Token Saver

    Retrieval-Augmented Generation

    A local Claude Desktop MCP extension that queries large PDFs with 92–98% fewer tokens using hybrid RAG search, returning page-cited answers while keeping documents private on your machine.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT License. Download and use at no cost.

    Engagement

    Available On

    Windows
    macOS
    Linux
    API
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Retrieval-Augmented GenerationMCP ServersDocument Management

    Alternatives

    webclawMemPalaceGraphlit
    Developer
    Marktechpost AI Media IncWalnut, CAEst. 2020

    Listed Aug 2026

    About Token Saver

    Token Saver is an open-source Claude Desktop extension developed at Marktechpost AI Media Inc by Arnav Rai (a CS student at Rochester Institute of Technology) during his internship, supervised by Jean-marc Mommessin and Asif Razzaq. It installs as a single .mcpb file and enables users to query large PDF documents with dramatically fewer tokens by performing local hybrid retrieval before anything reaches the model. The project is licensed under MIT and hosted on GitHub.

    What It Is

    Token Saver is a one-click Claude Desktop extension that solves a specific problem: pasting large PDFs into a chat context is expensive and often counterproductive, because models buried in hundreds of irrelevant pages reason less accurately. Token Saver intercepts the query, runs a local hybrid search (BM25 keyword scoring plus local semantic embeddings), and hands Claude only the most relevant passages — with exact page citations. The PDF itself never leaves your machine.

    How the Hybrid RAG Pipeline Works

    The retrieval pipeline runs entirely in a local resident process:

    • PDFs are extracted into 180-word overlapping chunks, embedded locally, and indexed in SQLite held in RAM
    • Each query runs both BM25 (stemmed, stop-word filtered) and cosine similarity over local embeddings, blended at a 0.4/0.6 ratio
    • An abstain gate filters results before they reach the model; if nothing matches, the tool refuses to guess rather than hallucinate
    • The index evicts after 30 idle minutes; the embedding model needs no internet after its first download
    • If the embedding model cannot load, retrieval automatically degrades to keyword-only scoring and notifies the user

    Measured on 30 author-written gold questions over two real documents (the 213-page Dobbs v. Jackson opinion and the 152-page Berkshire Hathaway 2023 annual report), the README reports hybrid recall@5 of 0.90 and a false-abstain rate of 0.00 as of 2026-07-25.

    Token Savings by Document Size

    The README documents that the returned slice is roughly constant (~2.5k tokens) regardless of document size, so savings scale with document length:

    • ~20 pages: ~14% vs pasting once, ~83% vs re-pasting each turn
    • ~80 pages: ~78% vs pasting once, ~96% vs re-pasting each turn
    • ~300 pages: ~94% vs pasting once, ~99% vs re-pasting each turn

    The crossover point is around 15–20 pages — below that, the retrieval overhead can cost more than simply pasting the file. Every answer session ends with a running savings block showing estimated tokens sent versus a naive baseline.

    Setup Path

    No Python, no Terminal, and no config files are required for end users — the extension bundles everything into a single .mcpb file:

    1. Download token-saver-ccr.mcpb from the GitHub Releases page
    2. Install via Claude Desktop → Settings → Extensions → Install extension
    3. Toggle Enabled on (a "not verified by Anthropic" warning is normal for file-installed extensions)
    4. Click Configure and point it at a small, dedicated folder containing the PDFs to query
    5. On the first question, grant "Always allow" permission; the first run also downloads the local embedding model (2–5 minutes)

    All current Claude models (Opus, Sonnet, Haiku) are supported; Sonnet or Opus is recommended for best single-turn accuracy.

    Known Limitations and Tradeoffs

    The README states these limitations plainly:

    • The abstain gate keys on keyword presence, so incidental word overlap can surface off-topic passages (false accepts) — citations should be checked
    • File resolution is the weaker half: in a 16-PDF folder test, the resolver chose the correct document for 12 of 14 requests
    • Generic nouns (e.g., "the textbook") can route to the wrong file when the term appears in neither filename nor early pages; naming the subject fixes it
    • Page-only citations give no section provenance, so in documents with majority and dissenting sections the model must infer which side a passage came from

    Update: Token Saver v1.2

    The latest release, Token Saver v1.2 (published 2026-07-31), is available on the GitHub Releases page as token-saver-ccr.mcpb. The README notes that retrieval metrics changed between an earlier 2026-07-09 run (hybrid 0.97 / keyword 0.93) and the current 2026-07-25 measurement (hybrid 0.90 / keyword 0.90), attributing the shift to retrieval changes including query-side stop words, light stemming, and an eligibility gate — not corpus drift. The repository had 111 stars and 13 forks as of early August 2026.

    Token Saver - 1

    Community Discussions

    Be the first to start a conversation about Token Saver

    Share your experience with Token Saver, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the MIT License. Download and use at no cost.

    • Local hybrid RAG search (BM25 + semantic)
    • 92–98% token reduction for large PDFs
    • Exact page citations
    • Privacy-first local processing
    • One-click .mcpb install

    Capabilities

    Key Features

    • Local hybrid RAG search (BM25 + semantic embeddings)
    • 92–98% token reduction for large PDFs
    • Exact page number citations in every answer
    • Privacy-first: documents never leave your machine
    • One-click .mcpb install for Claude Desktop
    • Automatic fallback to keyword-only if embedding model unavailable
    • 30-minute in-RAM index with auto-eviction
    • Running token savings block after each answer
    • Multi-document folder support with natural-language file resolution
    • Abstain gate to avoid hallucination when nothing matches
    • Reproducible retrieval eval with gold question sets
    • MIT licensed open-source codebase

    Integrations

    Claude Desktop
    Anthropic Claude (Opus, Sonnet, Haiku)
    MCP (Model Context Protocol)
    SQLite
    BM25 keyword search
    Local sentence embeddings
    tiktoken
    Python 3.10+
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Token Saver and help others make informed decisions.

    Developer

    Marktechpost AI Media Inc

    Marktechpost AI Media Inc publishes AI research news and builds open-source AI tools. The team developed Token Saver as an intern project supervised by Jean-marc Mommessin and Asif Razzaq, with engineering by Arnav Rai (CS student at Rochester Institute of Technology). Marktechpost focuses on making AI research accessible and practical through media coverage and hands-on tooling.

    Founded 2020
    Walnut, CA
    10 employees
    Read more about Marktechpost AI Media Inc
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    webclaw icon

    webclaw

    webclaw is an open-source web extraction engine built in Rust that turns any website into clean markdown, JSON, or LLM-ready structured data via CLI, REST API, and MCP server.

    MemPalace icon

    MemPalace

    A local, open-source AI memory system that stores all your conversations verbatim in ChromaDB and makes them findable via semantic search, achieving 96.6% LongMemEval R@5 with zero API calls.

    Graphlit icon

    Graphlit

    Graphlit is a cloud API platform that provides organizational knowledge infrastructure for AI agents, handling content ingestion, entity extraction, semantic search, and RAG in one unified API.

    Browse all tools

    Related Topics

    Retrieval-Augmented Generation

    RAG Systems that enhance LLM outputs by retrieving relevant information from external knowledge bases, combining the power of generative AI with information retrieval for more accurate and contextual responses.

    110 tools

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

    173 tools

    Document Management

    AI-enhanced platforms for intelligent file storage, organization, and collaboration that automatically categorize, version, and surface relevant documents when needed.

    43 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions