skilljit
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., "@skilljitfind a skill for writing clear commit messages"
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.
skilljit
Just-in-time skill and MCP tool routing for Claude — install thousands of skills at the token cost of one. Nothing loads into context until a task actually needs it.
Why the tool list never changes
The obvious way to add tools on demand is the MCP notifications/tools/list_changed
notification. It's broken in Claude Desktop —
anthropics/claude-code#50339
documents it being ignored across 336+ versions (empty client capabilities, an SDK
handler that never fires, a frozen tool-list reference) and Anthropic closed the issue
as not planned. The issue's own recommended workaround is to "declare all tools
at startup and dispatch internally via mode/action parameters."
That's what skilljit does. Its MCP tool list is fixed and never changes — a
small, constant handful of tools, always. Skills and upstream MCP tools are found
and loaded through those tools, not by re-registering the tool list. This is why skilljit works on Claude
Desktop, Claude Code, Codex, and Cursor while list_changed-based proxies silently
degrade on at least one of them.
Related MCP server: context-saver
The problem
Claude's Agent Skills use progressive disclosure: each skill's name + description
(~100 tokens) sits in the system prompt on every turn, and only the body loads on
demand. That works at 10 skills. It collapses at scale — the ecosystem is already
there, with tens of thousands of skills across thousands of repos. Installing 200 of
them costs tens of thousands of tokens per turn, forever. So nobody does — everyone
installs ten and the rest are unreachable.
MCP has the identical problem, worse: every connected server's full tool schemas load at startup, commonly 20–50k tokens before the user types anything.
Without skilljit | With skilljit | |
Skills reachable | ~10 | tens of thousands |
Per-turn skill overhead | 1k–20k tokens, grows forever | ~flat |
Per-turn MCP tool overhead | 20k–50k tokens | ~flat |
Install
npx -y skilljit syncThat's the primary path — the MCP ecosystem is npx-first, and Claude Code / Desktop configs already expect this shape.
A thin Python companion is also published for
claude-agent-sdk users who want to query the
same catalog directly instead of going through MCP:
pip install skilljitSee python/README.md for what that package does and doesn't do
— it forwards the CLI to npx -y skilljit and adds a read-only Catalog for Python.
Node version support
skilljit, @skilljit/mcp, and @skilljit/proxy require Node 18+ — that floor
comes directly from @modelcontextprotocol/sdk, which the MCP server and proxy layer
depend on and which itself requires 18+. There's no way around this without dropping
MCP support.
@skilljit/core (the catalog/search library, no MCP dependency) supports Node
16+ for anyone using its Catalog/ingestGithubRepo API directly. On Node 18+ this
is a zero-compile install (better-sqlite3 ships a prebuilt binary). On Node 16/17,
better-sqlite3 has no prebuilt binary for that ABI on any platform, so npm falls
back to compiling it from source via node-gyp — this needs a C++ toolchain and a
Python with the (pre-3.12) distutils module available. That's a standard requirement
for native Node modules, not a skilljit-specific step, but it does mean Node 16/17
installs of @skilljit/core aren't guaranteed zero-friction the way 18+ is.
Quickstart
# 1. Build the local catalog from GitHub sources (SQLite, ~/.skilljit/catalog.db)
skilljit sync
# 2. Search it — no network call, no context cost
skilljit search "postgres migration"
# 3. Point your MCP client at the server
skilljit serveAdd to your MCP client config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"skilljit": {
"command": "npx",
"args": ["-y", "skilljit", "serve"]
}
}
}Other commands: skilljit stats (catalog size + how to read live savings),
skilljit init <configPath> (preview routing your existing MCP servers through
skilljit — never mutates the original), skilljit adopt <configPath> (apply it),
skilljit doctor [configPath] (verify upstreams still work), skilljit restore <configPath> (undo adopt).
Adding your own skills to sync
By default sync only pulls from a small curated list of public repos. To add your
own:
# Another public (or your-token-authenticated private) GitHub repo:
skilljit sync --repo your-org/internal-skills --token "$SKILLJIT_GITHUB_TOKEN"
# Any git remote at all — self-hosted, GitLab, Bitbucket, or a private repo
# reached over SSH — using whatever git credentials are already set up on
# this machine. No GitHub API token needed for this path.
skilljit sync --git git@git.internal.example.com:team/skills.gitBoth flags are repeatable. --git sources are ingested via a bare mirror clone plus
git worktree rather than the GitHub API: the first sync pays for a full clone, every
sync after that is a cheap git fetch + worktree checkout — no rate limit, no token,
works against anything git itself can reach.
The six tools
skilljit exposes a fixed surface — it never grows or shrinks at runtime.
Tool | Returns |
| Cheap candidates: id, source, one-line description, install count, audit status. |
| Full SKILL.md body for one skill by id, plus a list of any bundled file paths (not their content). The main point a skill's content enters context. |
| One bundled reference doc or helper script's content, by a path |
| Matching upstream MCP tools' full JSON Schema, across every connected server. |
| Generic dispatcher to the matched upstream server and tool. |
| Tokens saved this session, and cumulatively across every skilljit session/tab that's ever used this catalog — see below. |
skill_find → skill_load → skill_read_file is progressive disclosure rebuilt as
a pull, all the way down: the always-loaded cost stops scaling with catalog size,
and a skill's bundled reference docs/scripts stay out of context until named by path,
even after the skill itself has been loaded.
tool_find and tool_call only appear once you've configured upstream MCP servers
via skilljit adopt (see below) — run skills-only and the surface is 4 tools, not 6.
This is what makes the skills half independently shippable and testable from the
proxy half.
Multiple tabs / parallel sessions
Running several Claude Code tabs at once for different tasks is exactly where the
"every tab pays for every installed skill" cost multiplies — N tabs open means that
per-turn overhead is being paid N times simultaneously. skilljit already collapses
that per-tab cost to a fixed few tools regardless of catalog size, but skilljit_stats()
goes further: every session's baseline/actual numbers are also written into the shared
catalog.db (the same file every tab's skilljit serve process already points at), so
the reported totals are cumulative across every tab you've had open, not just the
one you're asking from. Losing a tab doesn't lose that number — it was already durably
written, not held only in that tab's memory.
This does not recover a lost tab's conversation itself — that's a Claude Code
session feature (claude --resume / --continue), unrelated to skilljit. What it
fixes specifically is the token-accounting blind spot: "how much has skilljit actually
saved me today, across everything I had open," surviving any one tab dying.
MCP proxy — routing your other MCP servers
Passing skilljit serve --config <path> (the config path you previously ran
skilljit adopt on) turns on tool_find/tool_call for the servers it adopted.
Safety comes first here, since this touches configs you already rely on:
skilljit init <configPath>never mutates the original file — it writes a proposed config and prints a diff.skilljit adopt <configPath>is a dry run by default; pass--yesto actually write the change, after backing up the original.--keep server1,server2leaves those servers untouched — fully visible in the static tool list, notool_findround-trip. Useful for hot-path tools you call on every turn. (Keep is per-server, not per-tool, in this version.)skilljit doctor [configPath]verifies every adopted upstream still spawns, handshakes, and lists tools.skilljit restore <configPath>is one command that puts the original config back.One upstream MCP server being unavailable doesn't affect the others:
tool_callreturns a clean error for that server, everything else keeps working.
Security
Skills are, functionally, instructions from a stranger that an agent will follow — Anthropic warns explicitly that a malicious skill can exfiltrate data or misuse tools. skilljit treats that as a feature to design for, not an afterthought:
Every
skill_findresult surfaces the skill's audit status alongside its description.skill_loadwarns loudly in the returned content when a skill failed its audit, or hasn't been audited at all — the same posture as installing software from an unknown source.
Benchmark
bench/ ships a labeled set of 41 (task → correct skill) pairs and a recall@k
harness, so "the search works" is a measured claim rather than a vibe. Current
numbers, reproducible with node bench/run.mjs:
skilljit bench — 41 queries over 41 skills
recall@1: 37/41 (90.2%)
recall@3: 38/41 (92.7%)
recall@8: 41/41 (100.0%)Search is SQLite FTS5 + BM25 — no embeddings in v1. That's a deliberate YAGNI call:
FTS5 ships identically in both the Node (better-sqlite3) and Python (stdlib)
implementations, with no model download or extra runtime deps. The residual recall
risk (skill descriptions are semantic — "use when the user mentions PDFs…") is
mitigated structurally: skill_find returns several candidates for Claude to
consider and re-query on, rather than committing to a one-shot top-1 result.
Embeddings stay an opt-in option, to be added only if this benchmark shows FTS5
recall is genuinely inadequate — the three misses above (all near-misses, correct
skill just outside top 3) are the concrete candidates for that decision.
Publishing
Pushing a v* tag (e.g. v0.1.2) runs CI, then publishes every package to npm and
PyPI via Trusted Publishing (OIDC) — no long-lived NPM_TOKEN/PYPI_TOKEN secrets in
this repo. See .github/workflows/release.yml.
One-time setup required before that works, done manually (cannot be automated):
On npmjs.com, register a Trusted Publisher for each of
@skilljit/core,@skilljit/proxy,@skilljit/mcp, andskilljit, pointing at this repo, therelease.ymlworkflow file, and thenpmenvironment.On pypi.org, register a Trusted Publisher for the
skilljitproject, pointing at this repo, therelease.ymlworkflow file, and thepypienvironment.
Architecture
skilljit/
packages/core/ catalog store, FTS5 index, ranking, token accounting
packages/proxy/ upstream MCP server management, config adopt/restore, tool_find/tool_call routing
packages/mcp/ the MCP stdio server (the fixed tool surface, see "The six tools" above)
packages/cli/ skilljit sync | search | serve | stats | init | adopt | restore | doctor
python/ pip package — CLI shim + read-only query API for Agent SDK users
bench/ labeled task→skill eval set + recall@k harnessTypeScript is the single implementation; the PyPI package is a thin, honest wrapper around it rather than a second implementation of the ranking logic.
License
MIT
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.
Related MCP Servers
- AlicenseAqualityDmaintenanceUnified MCP and skill management gateway for AI agents, enabling tool discovery, installation, and sharing with 99% context token savings.8116105Apache 2.0
- AlicenseNot gradedqualityDmaintenanceMCP proxy that reduces context usage through semantic tool routing, enabling on-demand discovery and routing of relevant tools.MIT

skill-routerofficial
AlicenseNot gradedqualityCmaintenanceA lazy router for Claude Code skills that exposes a library of skills through search, load, and reindex MCP tools, reducing context usage by only loading skills on demand.77MIT- AlicenseAqualityBmaintenanceRoutes SKILL.md libraries to any MCP client, enabling task matching and skill loading with embedding-based scoring, keyword fallback, and context-window discipline.515MIT
Related MCP Connectors
A registry of 5,900+ peer-authored skills any MCP agent can search and load on demand.
Metered MCP tools: free discovery over MCP; per-call execution settled in USDC via x402 v2.
Workflow diagnostics, capability routing, and x402 settlement for MCP-compatible agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/aqibsidd/skilljit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server