SkillMCP
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., "@SkillMCPlist the skills available for this project"
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.
SkillMCP
Serves project-specific skills and behavioral rules to AI agents via MCP.
Works with Claude Code, Gemini CLI, Cursor, and Antigravity.
Pairs well with LearnSkill (behavioral auditing) and claude-mem (long-term memory).
Quick Start
cd /path/to/project
skills-mcp init . # scaffold .agents/ skillsRestart your agent host to pick up the new skills.
How it works
Injects knowledge into every agent session automatically via the MCP instruction block.
AGENT.md — behavioral rules
Markdown files injected into the system prompt at session start. All sources are combined; none are dropped.
Source | Location |
Bundled (SkillMCP install) |
|
Configured agent folders |
|
Skills — on-demand knowledge
Markdown skill files the agent fetches with list_skills / read_skill as needed. Later entries in agent_folders win on name collision.
Source | Location |
Bundled (SkillMCP install) |
|
Configured agent folders |
|
Setup
Install
cd SkillMCP && uv syncInitialize
skills-mcp init .Configure Edit
skillmcp.tomlto add agent folders. Last entry wins on collision.agent_folders = [ "/path/to/shared/agents", ".agents/", ]Each agent folder can contain:
AGENT.md— behavioral rules injected into every session (all folders combined)skills/— skill library scanned forlist_skills/read_skill
Telemetry & Metrics
SkillMCP automatically tracks usage metrics to build a scalable dataset of agent behavior and skill utilization. Telemetry data is persisted to telemetry.json in your project root.
Telemetry Dataset (telemetry.json)
Tracks sessions, tool counts, and skill access leaderboards:
{
"TotalSessions": 100,
"TotalSkillCalls": 5,
"ToolCalls": {
"verify_setup": 10,
"list_skills": 12,
"read_skill": 5,
"skill_health": 1
},
"Skills": [
{ "role-plan": 3 },
{ "role-research": 2 }
]
}Health Diagnostics (skill_health)
The server exposes a health-check tool skill_health that returns details about the server health and the sequence number of the current tool execution:
{
"status": "healthy",
"call_number": 5,
"total_sessions": 100,
"total_skill_calls": 5,
"checked_at": "2026-05-17T16:00:00Z"
}CLI Reference
Command | Description |
| Scaffold |
| Verify directory layout and MCP registration |
| Re-register with all agent hosts (Claude, Gemini, etc.) |
Troubleshooting
Stale Paths: If you move your project, run
skills-mcp mcp registerfrom the new location to update absolute paths in the MCP configs.Missing Skills: Run
skills-mcp doctorto see exactly whichskillmcp.tomlis being discovered and how many skills were found.
This server cannot be installed
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
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/NVentimiglia/SkillsMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server