Quartermaster
Allows interaction with GitHub via MCP, enabling tools for managing repositories, issues, pull requests, and other GitHub resources.
Provides tool routing optimized for Salesforce MCP servers, originally extracted from a Salesforce intelligence layer, enabling efficient tool selection for Salesforce operations.
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., "@Quartermasterfind tools for managing GitHub repositories"
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.
π§ Quartermaster
Issues your agent exactly the tools the mission needs β nothing more.
An offline MCP gateway: configure one server (quartermaster-mcp) in your client; Quartermaster federates downstream MCP servers, ranks tools for each query, enforces policy, validates calls, and audits token savings. Not a registry, marketplace, or hosted SaaS.
Gateway guide Β· Quick start Β· Testing Β· Audit schema Β· How it works
Status: alpha β on npm (
npx quartermaster-mcp). The ranker is extracted from a production system (see Heritage); the proxy (quartermaster-mcp) is built, published, and runnable end-to-end (federation +retrieve_tools+call_tool); the Claude Code plugin is still scaffolded.Verdict β GO. Zero-dependency BM25 is a genuinely good router on rich real descriptions: 91.5% recall@8 on a 171-tool heritage manifest (substring: 61.7% R@8). On a smaller blind real-MCP corpus with no synonym tuning, recall@1 is modest (~37%) and substring can edge BM25 at R@1 β the funnel still lands the right tool in the top-8 ~73% of the time. Optional offline synonym expansion is a large win on terse/vocabulary-poor manifests (the common case β 5β9Γ recall@1 at 500β1000 tools) and, with weighting, only marginally trails BM25 at recall@8 on rich descriptions while leading on MRR β so it ships opt-in and corpus-tuned. We do not claim to beat hybrid embeddings β we claim competitive routing with no model dependency at all. Numbers: benchmarks.
The problem
Give a model 200 tools and two things break: every tool's schema is loaded into context on every turn (token tax), and the model has to pick the right one from 200 lookalikes (accuracy drops as the count grows). This is well-documented prior art β RAG-MCP names "prompt bloat and selection complexity," and ToolRet (ACL 2025) shows generic retrievers do poorly on tool selection specifically.
Related MCP server: MCP Vector Proxy
The shape: funnel advises, model decides
query query
β β
βΌ βΌ
ββββββββββ ββββββββββββββββ offline BM25 over
β LLM ββ 200 β Quartermasterβ tool descriptions
βββββ¬βββββ schemas ββββββββ¬ββββββββ (zero deps, no model)
β picks wrong, β top-8 shortlist + guidance
β huge context βΌ
βΌ ββββββββββββββββ
a tool β LLM β reads a small,
ββββββββ¬ββββββββ relevant set β picks
βΌ
right tool(s)Quartermaster doesn't decide. It returns a scored shortlist; the host LLM β already in the loop, free β makes the final call. So we optimize for recall@K ("is the right tool in the top K?"), not top-1.
What makes it different
The MCP-router space is crowded (Anthropic's native Tool Search, mcpproxy-go, mcp-funnel, MCPJungle, β¦). We are honest about that β see the comparison. The seam Quartermaster fills:
Zero embedding model. No torch, no model download, nothing to warm up. The whole ranker is a few hundred lines of dependency-free TypeScript.
Host-agnostic. Works outside the Anthropic API β any MCP client, any model.
Advises, doesn't decide. Returns a shortlist + guidance, never a forced pick.
Offline & private. Nothing phones home; suitable for air-gapped / regulated environments.
We do not claim best-in-class retrieval accuracy. The benchmarks show the honest picture: zero-dependency BM25 is a strong router, and offline query expansion adds a large recall boost on terse manifests (where the vocabulary gap bites) while adding noise on rich ones β so expansion is an opt-in toggle, not a silver bullet. The bet that paid off: you can get competitive tool routing with no embedding model at all.
Closing the gap (per team, not per developer)
Quartermaster does not ship tuned routing for every MCP server on npm β and shouldn't try to. The model is three layers:
Layer | Who | What |
Global | Everyone | Same BM25 ranker and tokenization |
Org / project | One team | One |
Traffic | Automatic | Audit captures real queries; eval turns them into labeled cases |
Out of the box: strong default lexical routing (~73% recall@8 on the blind real-MCP corpus, ~91% on rich heritage manifests β see benchmarks). The funnel optimizes recall@K, not top-1; the host LLM picks from the shortlist.
Per org: enable audit, run the closed loop, gate CI on your cases β not hand-tuning for every developer in the world:
# In your MCP host env:
# QM_AUDIT=1 QM_AUDIT_FILE=/path/to/audit.jsonl
quartermaster eval --from-audit audit.jsonl --draft-cases cases.jsonl --config quartermaster.json
quartermaster eval --config quartermaster.json --cases cases.jsonl --weak-only
quartermaster inspect --config quartermaster.json --audit audit.jsonlOptional starter vocabulary: examples/synonyms/business-to-dev.json
(bugβissue, folderβdirectory, β¦). Run quartermaster doctor to catch empty
descriptions and schema gaps in your downstream manifests. Full playbook:
testing Β· gateway eval.
Quick start
Quartermaster is a single package β quartermaster-mcp. It installs both the
MCP gateway (quartermaster-mcp) and the product CLI (quartermaster) for
reports, inspection, evals, policy tests, savings reports, diagnostics, and the
local dashboard. Put it in front of N MCP servers; agents load retrieve_tools
call_toolinstead of every downstream schema. Point it at aquartermaster.json:
{
"servers": [
{ "id": "github", "command": "npx", "args": ["-y", "@modelcontextprotocol/server-github"],
"env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_TOKEN}" } }
]
}npx quartermaster-mcp --config ./quartermaster.jsonnpx -p quartermaster-mcp quartermaster report --audit audit.jsonl --out report.html
npx -p quartermaster-mcp quartermaster eval --config quartermaster.json --cases eval.jsonl
npx -p quartermaster-mcp quartermaster doctor --config quartermaster.json
npx -p quartermaster-mcp quartermaster savings --audit audit.jsonl --jsonIt spawns the downstream servers, aggregates their tools, serves a ranked,
schema-hydrated shortlist via retrieve_tools, and forwards selected calls via
call_tool after policy evaluation and input-schema validation. See
packages/proxy and the gateway guide.
Host recipe: Use Quartermaster in Cursor (the same
mcpServers config works for Claude Desktop).
What ships
One package β quartermaster-mcp β the drop-in MCP proxy
that federates downstream servers behind retrieve_tools, call_tool, and
list_servers, plus the quartermaster CLI for report, inspect, eval,
policy test, savings, doctor, and dashboard. The BM25/TF-IDF ranker,
policy engine, telemetry helpers, validation, and CLI are bundled into the
proxy package; they are not published separately, so the install is
self-contained. Runtime dependencies are the MCP SDK and Ajv for JSON Schema
validation. A .claude-plugin/ manifest is also included for
the Claude Code tool-search seam.
Heritage
Extracted and generalized from the semantic funnel in sf-intelligence, a read-only intelligence layer that routes ~170 tools for one Salesforce org. The fork makes the tool corpus and synonyms injectable, and upgrades the default ranker from TF-IDF cosine to BM25.
License
MIT Β© 2026 Pranav Nagrecha. See LICENSE.
Security
See SECURITY.md for the trust model, config safety, and how to report vulnerabilities.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/PranavNagrecha/Quartermaster'
If you have feedback or need assistance with the MCP directory API, please join our Discord server