Skill Jack MCP
Integrates Agent Skills into LLMs by discovering skills in a configured directory and progressively loading their instructions and resources on demand through a structured disclosure pattern.
README
Skill Jack MCP
An MCP server that jacks Agent Skills directly into your LLM's brain.
Features
- Dynamic Skill Discovery - Discovers skills from MCP Roots (client workspace) or fallback directory
- Server Instructions - Injects skill metadata into the client's system prompt
- Skill Tool - Load full skill content on demand (progressive disclosure)
- MCP Resources - Access skills via
skill://URIs with batch collection support - Resource Subscriptions - Real-time file watching with
notifications/resources/updated - Live Updates - Re-discovers skills when workspace roots change
Installation
npm install
npm run build
Usage
With MCP Roots (Recommended)
If your MCP client supports Roots, skills are discovered automatically from your workspace:
# No arguments needed - discovers from client workspace
skill-jack-mcp
The server scans .claude/skills/ and skills/ directories in each workspace root.
With Fallback Directory
For clients without Roots support, or to provide a default skills location:
# Pass skills directory as argument
skill-jack-mcp /path/to/skills
# Or use environment variable
SKILLS_DIR=/path/to/skills skill-jack-mcp
Windows note: Use forward slashes in paths when using with MCP Inspector:
skill-jack-mcp "C:/Users/you/skills"
How It Works
The server implements the Agent Skills progressive disclosure pattern with MCP Roots support:
- On connection: Server requests workspace roots from client (or uses fallback directory)
- Discovery: Scans roots for
.claude/skills/andskills/directories - Instructions: Generates
<available_skills>XML with discovered skill metadata - On tool call: Agent calls
skilltool to load full SKILL.md content - Live updates: Re-discovers when client's workspace roots change
┌─────────────────────────────────────────────────────────┐
│ MCP Client connects │
│ ↓ │
│ Server requests roots from client │
│ • Scans .claude/skills/ and skills/ in each root │
│ • Falls back to SKILLS_DIR if roots not supported │
│ ↓ │
│ LLM sees skill metadata in system prompt │
│ ↓ │
│ LLM calls "skill" tool with skill name │
│ ↓ │
│ Server returns full SKILL.md content │
│ ↓ │
│ (Workspace changes → roots/list_changed → re-discover) │
└─────────────────────────────────────────────────────────┘
Tools
skill
Load and activate an Agent Skill by name. Returns the full SKILL.md content.
Input:
{
"name": "skill-name"
}
Output: Full SKILL.md content including frontmatter and instructions.
skill-resource
Read files within a skill's directory (scripts/, references/, assets/, snippets/, etc.).
This follows the Agent Skills spec's progressive disclosure pattern - resources are loaded only when needed.
Input:
{
"skill": "mcp-server-ts",
"path": "snippets/tools/echo.ts"
}
Output: File content.
List available files (pass empty path):
{
"skill": "mcp-server-ts",
"path": ""
}
Security: Path traversal is prevented - only files within the skill directory can be accessed.
Resources
Skills are also accessible via MCP Resources using skill:// URIs.
URI Patterns
| URI | Returns |
|---|---|
skill:// |
All SKILL.md contents (collection) |
skill://{name} |
Single skill's SKILL.md content |
skill://{name}/ |
All files in skill directory (collection) |
skill://{name}/{path} |
Specific file within skill |
Resource Subscriptions
Clients can subscribe to resources for real-time updates when files change.
Capability: resources: { subscribe: true, listChanged: true }
Subscribe to a resource:
→ resources/subscribe { uri: "skill://mcp-server-ts" }
← {} (success)
Receive notifications when files change:
← notifications/resources/updated { uri: "skill://mcp-server-ts" }
Unsubscribe:
→ resources/unsubscribe { uri: "skill://mcp-server-ts" }
← {} (success)
How it works:
- Client subscribes to a
skill://URI - Server resolves URI to file path(s) and starts watching with chokidar
- When files change, server debounces (100ms) and sends notification
- Client can re-read the resource to get updated content
URI to file path resolution:
skill://→ watches all skill directoriesskill://{name}→ watches that skill's SKILL.mdskill://{name}/{path}→ watches specific file
Security
Skills are treated as trusted content. This server reads and serves skill files directly to clients without sanitization. Only configure skills directories containing content you trust.
Protections in place:
- Path traversal prevention (symlink-aware)
- File size limits (10MB max)
- Directory depth limits
- Skill content is confined to configured directories
Not protected against:
- Malicious content within trusted skill directories
- Prompt injection via skill instructions (skills can influence LLM behavior by design)
Server Instructions Format
The server generates instructions that include a usage preamble and skill metadata:
# Skills
When a user's task matches a skill description below: 1) activate it, 2) follow its instructions completely.
<available_skills>
<skill>
<name>mcp-server-ts</name>
<description>Build TypeScript MCP servers with composable code snippets...</description>
<location>C:/path/to/mcp-server-ts/SKILL.md</location>
</skill>
</available_skills>
Skill Discovery
From MCP Roots
When the client supports roots, the server scans each workspace root for:
{root}/.claude/skills/{root}/skills/
From Fallback Directory
When roots aren't available, the server scans the configured directory.
Naming Conflicts
If the same skill name exists in multiple roots, it's prefixed with the root name (e.g., project-a:commit).
Testing
# Build first
npm run build
# Test with MCP Inspector
npx @modelcontextprotocol/inspector@latest node dist/index.js /path/to/skills
Related
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.