local-skills-mcp
by kdpa-llc·★ 28·Score 45
Universal MCP server that lets any AI agent access expert skills from your local filesystem with lazy loading.
Overview
Local Skills MCP is a universal Model Context Protocol server that enables any LLM or AI agent to utilize expert skills from your local filesystem. It reduces context consumption through lazy loading, only initially loading skill names and descriptions (~50 tokens per skill) with full content loaded on-demand. The server works with Claude, Cline, and any MCP-compatible client, allowing users to write skills once and use them across multiple AI systems and LLMs.
Try asking AI
After installing, here are 4 things you can ask your AI assistant:
When to choose this
Choose this when you need to create and maintain expert skills that can be used across multiple AI systems and want efficient context usage through lazy loading.
When NOT to choose this
Avoid this if you need centralized skill management across a team or require more sophisticated skill versioning and collaboration features.
Tools this server exposes
1 tool extracted from the READMEget_skillRetrieves a specific skill by name from the local filesystem
Comparable tools
Installation
Install
**Requirements:** Node.js 18+
Choose one installation method:
# From npm (recommended)
npm install -g local-skills-mcp
# From GitHub
npm install -g github:kdpa-llc/local-skills-mcp
# Or clone and build locally
git clone https://github.com/kdpa-llc/local-skills-mcp.git
cd local-skills-mcp
npm install # Automatically builds via prepare scriptConfigure
**For Claude Code/Desktop** (~/.config/claude-code/mcp.json or ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"local-skills": {
"command": "local-skills-mcp"
}
}
}Compare local-skills-mcp with
Last updated · Auto-generated from public README + GitHub signals.