
Awesome Agent Skills MCP Server
โ 24from shadowrootdev
A Model Context Protocol (MCP) server that provides access to 100+ curated AI agent skills from the VoltAgent Awesome Agent Skills collection.
Awesome Agent Skills MCP Server
A Model Context Protocol (MCP) server that provides access to 100+ curated AI agent skills from the VoltAgent Awesome Agent Skills collection.
Transform your AI assistants into specialized experts with skills from Anthropic, Vercel, Trail of Bits, Hugging Face, Stripe, Expo, and many more leading organizations.
Table of Contents
- Features
- Quick Start
- Installation
- Configuration
- Available Skills
- MCP Tools
- Usage Examples
- Development
- API Reference
- Troubleshooting
- Credits
- License
Features
- 100+ Curated Skills - Access skills from top organizations including Anthropic, Vercel, Trail of Bits, Hugging Face, and more
- Auto-Sync - Automatically fetches and updates skills from the VoltAgent repository
- MCP 2024-11-05 Compliant - Full compatibility with the latest Model Context Protocol specification
- Multi-Client Support - Works with Claude, GitHub Copilot, OpenCode, and any MCP-compatible client
- Smart Caching - Efficient JSON-based caching for fast startup times
- Type-Safe - Built with TypeScript and Zod for runtime validation
- Zero Configuration - Works out of the box with sensible defaults
Available Skills
The server provides access to 100+ skills from leading organizations:
Anthropic
Document processing, presentation creation, spreadsheet manipulation, PDF handling, algorithmic art, MCP building, and more.
| Skill | Description |
|---|---|
docx | Create, edit, and analyze Word documents |
pptx | PowerPoint presentation creation and editing |
xlsx | Spreadsheet manipulation with formulas |
pdf | PDF processing and form filling |
mcp-builder | Guide for creating MCP servers |
webapp-testing | Playwright-based web app testing |
Vercel
React and Next.js best practices, deployment, and performance optimization.
| Skill | Description |
|---|---|
react-best-practices | React performance optimization guidelines |
next-best-practices | Next.js conventions and patterns |
web-design-guidelines | UI/UX compliance review |
vercel-deploy | Deploy apps to Vercel |
Trail of Bits
Security analysis, smart contract auditing, and code review tools.
| Skill | Description |
|---|---|
building-secure-contracts | Smart contract security toolkit |
semgrep-rule-creator | Create custom Semgrep rules |
property-based-testing | Property-based testing guidance |
static-analysis | Static analysis tooling |
Hugging Face
ML model training, dataset management, and Hub operations.
| Skill | Description |
|---|---|
hugging-face-cli | HF Hub CLI operations |
hugging-face-datasets | Dataset creation and management |
hugging-face-model-trainer | Model fine-tuning with TRL |
hugging-face-evaluation | Model evaluation workflows |
Sentry
Code review, commit conventions, and PR automation.
| Skill | Description |
|---|---|
code-review | Sentry engineering code review practices |
commit | Conventional commit messages |
create-pr | PR creation following Sentry conventions |
find-bugs | Bug and vulnerability detection |
And Many More...
- Stripe - Payment integration best practices
- Expo - React Native app development
- n8n - Workflow automation patterns
- Sanity - CMS best practices
- Neon - Serverless Postgres
- Remotion - Programmatic video creation
MCP Tools
The server exposes four MCP tools:
list_skills
List all available skills with optional filtering.
// List all skills
{ }
// Filter by source
{ "source": "repository" }
// Filter by tag
{ "tag": "security" }get_skill
Get detailed information about a specific skill.
{ "skill_id": "react-best-practices" }invoke_skill
Invoke a skill with optional parameters.
{
"skill_id": "docx",
"parameters": {
"document_type": "report"
}
}refresh_skills
Manually trigger a skills refresh from the repository.
{ }Development
Setup
git clone https://github.com/shadowrootdev/awesome-agent-skills-mcp.git
cd awesome-agent-skills-mcp
npm installBuild
npm run buildRun Tests
# Run all tests
npm test
# Run tests in watch mode
npm run test:watch
# Run integration tests only
npm run test:integrationLint & Format
npm run lint
npm run formatProject Structure
awesome-agent-skills-mcp/
โโโ src/
โ โโโ index.ts # Entry point
โ โโโ server.ts # MCP server implementation
โ โโโ config.ts # Configuration management
โ โโโ models/
โ โ โโโ skill.ts # Skill type definitions
โ โ โโโ parameter.ts # Parameter schemas
โ โ โโโ registry.ts # SkillRegistry class
โ โ โโโ repository.ts # Repository source model
โ โโโ services/
โ โ โโโ git-sync.ts # Git repository sync
โ โ โโโ skill-parser.ts # Skill parsing from README
โ โ โโโ skill-executor.ts # Skill invocation
โ โโโ cache/
โ โ โโโ cache-manager.ts # JSON-based caching
โ โโโ utils/
โ โโโ logger.ts # Structured logging
โโโ tests/
โ โโโ unit/ # Unit tests
โ โโโ integration/ # Integration tests
โโโ dist/ # Compiled output
โโโ .cache/ # Runtime cache (gitignored)API Reference
Skill Object
interface Skill {
id: string; // Unique identifier
name: string; // Display name
description: string; // Short description
source: 'repository' | 'local';
sourcePath: string; // GitHub URL or local path
content: string; // Full skill content (markdown)
parameters: ParameterSchema[];
metadata: {
author?: string;
version?: string;
tags?: string[];
requirements?: string[];
sourceOrg?: string; // GitHub organization
sourceRepo?: string; // GitHub repository
};
lastUpdated: Date;
}Parameter Schema
interface ParameterSchema {
name: string;
type: 'string' | 'number' | 'boolean' | 'object' | 'array';
description: string;
required: boolean;
default?: unknown;
enum?: unknown[];
}Documentation & Demo
GitHub Pages
You can enable GitHub Pages to host interactive documentation or demos:
-
Create your documentation (recommended: use
/docsfolder):- Create a
docs/directory in your repository root - Add an
index.htmlfile or use a static site generator like VitePress or Docusaurus - This keeps documentation separate from source code
- Create a
-
Enable GitHub Pages:
- Go to your repository Settings โ Pages
- Select Source: Deploy from a branch
- Choose Branch:
mainand folder/docs(recommended) or/if deploying entire repo - Save and wait for deployment
This is useful for:
- Interactive API documentation
- Live demos of MCP server capabilities
- Tutorial walkthroughs
- Skill catalog browser
Note: Using the
/docsfolder is recommended as it keeps documentation organized and separate from source code. Only use/(root) if you want to deploy the entire repository as a website.
Related Projects
- VoltAgent - AI agent framework
- Awesome Agent Skills - The source skill collection
- MCP Servers - Official MCP server implementations
Made with โค๏ธ for the AI agent community
โญ Star the Awesome Agent Skills repository
npx awesome-agent-skills-mcp๐ Quick Start
npx awesome-agent-skills-mcpThat's it! Add to your MCP client config and start using 100+ AI skills.
Quick Start
Using npx (Recommended)
npx awesome-agent-skills-mcpGlobal Installation
npm install -g awesome-agent-skills-mcp
awesome-agent-skills-mcpInstallation
Prerequisites
- Node.js >= 20.0.0
- npm or yarn
From npm
npm install awesome-agent-skills-mcpFrom Source
git clone https://github.com/shadowrootdev/awesome-agent-skills-mcp.git
cd awesome-agent-skills-mcp
npm install
npm run buildConfiguration
VS Code / GitHub Copilot
Create or update .vscode/mcp.json in your project:
{
"servers": {
"awesome-agent-skills": {
"command": "npx",
"args": ["awesome-agent-skills-mcp"]
}
}
}Or with a local installation:
{
"servers": {
"awesome-agent-skills": {
"command": "node",
"args": ["/path/to/awesome-agent-skills-mcp/dist/index.js"]
}
}
}Important: After adding the configuration, fully quit VS Code (Cmd+Q / Alt+F4) and reopen it for changes to take effect.
Claude Desktop
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"awesome-agent-skills": {
"command": "npx",
"args": ["awesome-agent-skills-mcp"]
}
}
}OpenCode
Add to ~/.config/opencode/opencode.json:
{
"mcp": {
"awesome-agent-skills": {
"type": "local",
"command": ["npx", "awesome-agent-skills-mcp"],
"enabled": true
}
}
}Environment Variables
| Variable | Default | Description |
|---|---|---|
SKILLS_REPO_URL | https://github.com/VoltAgent/awesome-agent-skills.git | Skills repository URL |
SKILLS_CACHE_DIR | .cache | Cache directory path |
SKILLS_SYNC_INTERVAL | 60 | Auto-sync interval in minutes (0 to disable) |
LOG_LEVEL | info | Logging level (debug, info, warn, error) |
Usage Examples
In GitHub Copilot Chat
@workspace Use the react-best-practices skill to review my React components@workspace List all available security-related skills@workspace Get the stripe-best-practices skill and apply it to my checkout codeIn Claude
What skills are available for Next.js development?Use the code-review skill to analyze my pull requestTroubleshooting
Skills Not Loading
- Check cache: Delete
.cachedirectory and restart - Verify network: Ensure access to GitHub
- Check logs: Set
LOG_LEVEL=debugfor verbose output
GitHub Copilot Not Seeing Skills
- Full restart required: Quit VS Code completely (Cmd+Q) and reopen
- Check config path: Ensure
.vscode/mcp.jsonis in the workspace root - Verify server: Run
npx awesome-agent-skills-mcpmanually to test
Connection Errors
# Test the server manually
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}' | npx awesome-agent-skills-mcpLicensed under MITโ you can use, modify, and redistribute it under that license's terms.
View the full license file on GitHub โ