One MCP server that auto-serves skills to agentic coding tools
Project description
auto-skill-mcp
One MCP server that auto-serves skills to agentic coding tools. Connect once, get expert guidance on any task.
Quick start
# Install globally
pip install auto-skill-mcp
# Or run directly with uv (no install needed)
uvx auto-skill-mcp
Auto-installer
Detect and configure your coding agents automatically:
# Scan for agents and preview changes
auto-skill-mcp install --dry-run
# Install to all detected agents
auto-skill-mcp install
# List detected agents and their config files
auto-skill-mcp list
# Remove from all agents
auto-skill-mcp uninstall
# Start the MCP server (default, same as `uvx auto-skill-mcp`)
auto-skill-mcp
The installer detects these agents across global and project scope:
- Global: Claude Desktop, Claude Code, Cursor, Windsurf, Cline, Roo Code, OpenCode, Gemini CLI, GitHub Copilot CLI
- Project: VS Code
.vscode/mcp.json, JetBrains.idea/mcp.json, Claude Code.mcp.json, Cursor.cursor/mcp.json
Manual configuration
Add to your MCP config (claude_desktop_config.json, .cursor/mcp.json,
.vscode/mcp.json, etc.):
{
"mcpServers": {
"auto-skill-mcp": {
"command": "uvx",
"args": ["auto-skill-mcp"]
}
}
}
How it works
Your coding agent calls analyze_task() at the start of any task. The server
classifies the task intent via TF-IDF matching, finds the most relevant skills
from a bundled library (43 curated guides), and returns a structured plan with
recommendations. No manual skill installation — one connection.
Tools
| Tool | Description |
|---|---|
analyze_task |
[REQUIRED] Call first — classifies intent, returns plan + matched skills |
get_skill |
Load full SKILL.md body for a specific skill |
list_skills |
Browse all skills, optionally filtered by category |
search_skills |
Search skills by keyword or topic |
Typical flow
1. agent calls analyze_task("review PR #42", goal="find security bugs")
→ task_type: "security", complexity: "medium"
→ recommends: security-audit, code-review, testing
2. agent calls get_skill("security-audit")
→ gets full guidance on security review process
3. agent uses the guidance to perform the task
Skills included (43)
| Category | Skills |
|---|---|
| Code quality | code-review, debugging, testing, refactoring, code-simplification, error-handling, technical-debt-management, performance-optimization |
| Architecture & security | api-design, database-design, architecture-decisions, dependency-management, security-audit, secrets-management, input-validation, authentication-patterns |
| DevOps & git | ci-cd-setup, docker-best-practices, monitoring-setup, incident-response, migration-planning, git-workflow, commit-messages, pr-description |
| Frontend & backend | react-patterns, css-layout, accessibility, state-management, form-design, rest-api-design, graphql-patterns, webhook-design, rate-limiting |
| Docs & general | writing-docs, api-documentation, readme-crafting, adr-writing, caching-strategies, bundle-optimization, query-optimization, changelog-generation, pair-programming, on-call-handbook |
Development
pip install -e ".[dev]"
pytest tests/ -v
ruff check src/ tests/
mypy src/auto_skill_mcp/
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file auto_skill_mcp-0.0.1.tar.gz.
File metadata
- Download URL: auto_skill_mcp-0.0.1.tar.gz
- Upload date:
- Size: 51.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77463fe2cc3350564a18775b344e7cf5591abd324ef9cfd96c5107629818550c
|
|
| MD5 |
164e50ab9a58da46d79683dc56bd52fd
|
|
| BLAKE2b-256 |
ef1e0a2e28482d49d09c6e4368fe987d3abb54ec743237cfc8685dfde0ca77a5
|
File details
Details for the file auto_skill_mcp-0.0.1-py3-none-any.whl.
File metadata
- Download URL: auto_skill_mcp-0.0.1-py3-none-any.whl
- Upload date:
- Size: 64.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c200bf5b6adb60f0ff4e7f070495058869c8780c94aa52b177bdbe5305a09e64
|
|
| MD5 |
662cfb9610f99dc824c59dddb572d4ef
|
|
| BLAKE2b-256 |
a2de587a93de58f034217a1c8fbb260f3c25ba04a8c087a6ec8ce43e70459f08
|