MCP server to expose Claude Code Skills to AI agents
# Agent Skill Loader 🧠
[](https://www.npmjs.com/package/agent-skill-loader)
[](https://registry.modelcontextprotocol.io)
[](https://opensource.org/licenses/MIT)
[](https://nodejs.org)
[](https://www.typescriptlang.org/)
[](https://modelcontextprotocol.io)
**Agent Skill Loader** is a Model Context Protocol (MCP) server that acts as a bridge between your static Claude Code Skills library and dynamic AI agents (like Antigravity, Claude Desktop, or Cursor).
It allows agents to "learn" skills on demand without requiring you to manually copy files into every project.
## 🚀 Features
* **Discovery**: `list_skills` - Scans your configured skill directories.
* **Dynamic Learning**: `read_skill` - Fetches the `SKILL.md` content for the agent to read.
* **Persistence**: `install_skill` - Copies the skill permanently to your project if needed.
* **Configuration**: `manage_search_paths` - Add/remove skill directories at runtime.
* **Troubleshooting**: `debug_info` - Diagnose configuration and path issues.
## 🛠️ Setup
### Prerequisites
- Node.js >= 18
### Option A: Install from npm (Recommended)
```bash
npm install -g agent-skill-loader
```
Then register in `.mcp.json`:
```json
"agent-skill-loader": {
"command": "agent-skill-loader"
}
```
### Option B: Build from Source
```bash
git clone https://github.com/back1ply/agent-skill-loader.git
cd agent-skill-loader
npm install
npm run build
```
Then register in `.mcp.json`:
```json
"agent-skill-loader": {
"command": "node",
"args": ["<path-to-repo>/build/index.js"]
}
```
## 📂 Configuration
The server automatically detects Agent that generates comprehensive documentation, API references, architecture diagrams, and developer onboarding guides from existing code.
Agent configuration for systematic bug investigation that traces issues from error logs through the codebase to root cause with suggested fixes.
Agent for integrating third-party APIs including SDK setup, type generation, error handling, retry logic, and rate limit management.
Cursor's built-in autonomous coding agent that can make multi-file edits, run terminal commands, search the codebase, and iteratively build features with minimal human intervention.
Cloud-based autonomous coding agent that runs in the background on remote sandboxed environments, handling complex multi-step tasks while you continue working.
Cursor's multi-file editing agent within Composer mode that can create, edit, and delete files across your entire project in a single conversation.