Install
$ agentstack add mcp-discretetom-agent-skills-mcp ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
agent-skills-mcp - Load Agent Skills for your agents
[](https://pypi.org/project/agent-skills-mcp/)
> [!WARNING] > This Python implementation is deprecated. Please use the Rust implementation instead: https://github.com/DiscreteTom/agent-skills-mcp-rs
Usage
Full CLI Usage
uvx agent-skills-mcp --help
Usage: agent-skills-mcp [OPTIONS]
Agent Skills MCP - Load Agent Skills for your agents
╭─ Options ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ --skill-folder TEXT Path to folder containing skill markdown files [env var: SKILL_FOLDER] [default: skills] │
│ --mode [tool|system_prompt] Operating mode [env var: MODE] [default: tool] │
│ --version Show version and exit │
│ --help Show this message and exit. │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
Setup
First, put your skills in ~/skills, e.g.
git clone https://github.com/anthropics/skills.git ~/skills
The server recursively searches for SKILL.md files and follows symlinks, allowing flexible skill organization.
Then, add this to your MCP client configuration:
[](https://cursor.com/en-US/install-mcp?name=skills&config=eyJlbnYiOnsiU0tJTExfRk9MREVSIjoifi9za2lsbHMifSwiY29tbWFuZCI6InV2eCBhZ2VudC1za2lsbHMtbWNwIn0%3D) [](https://kiro.dev/launch/mcp/add?name=skills&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22agent-skills-mcp%22%5D%2C%22env%22%3A%7B%22SKILL_FOLDER%22%3A%22~%2Fskills%22%7D%7D)
{
"mcpServers": {
"skills": {
"command": "uvx",
"args": ["agent-skills-mcp"],
"env": {
"SKILL_FOLDER": "~/skills"
}
}
}
}
Modes
system_prompt: Include skill information in MCP instructions (recommended if your agent regards MCP server instructions)tool: Register skills as MCP tools (fallback mode since many agents ignore MCP server instructions)
[CHANGELOG](./CHANGELOG.md)
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: DiscreteTom
- Source: DiscreteTom/agent-skills-mcp
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.