Labsco
shadowrootdev logo

Awesome Agent Skills MCP Server

โ˜… 24

from shadowrootdev

A Model Context Protocol (MCP) server that provides access to 100+ curated AI agent skills from the VoltAgent Awesome Agent Skills collection.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeAdvanced setup

Awesome Agent Skills MCP Server

npm downloads

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

  • 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.

SkillDescription
docxCreate, edit, and analyze Word documents
pptxPowerPoint presentation creation and editing
xlsxSpreadsheet manipulation with formulas
pdfPDF processing and form filling
mcp-builderGuide for creating MCP servers
webapp-testingPlaywright-based web app testing

Vercel

React and Next.js best practices, deployment, and performance optimization.

SkillDescription
react-best-practicesReact performance optimization guidelines
next-best-practicesNext.js conventions and patterns
web-design-guidelinesUI/UX compliance review
vercel-deployDeploy apps to Vercel

Trail of Bits

Security analysis, smart contract auditing, and code review tools.

SkillDescription
building-secure-contractsSmart contract security toolkit
semgrep-rule-creatorCreate custom Semgrep rules
property-based-testingProperty-based testing guidance
static-analysisStatic analysis tooling

Hugging Face

ML model training, dataset management, and Hub operations.

SkillDescription
hugging-face-cliHF Hub CLI operations
hugging-face-datasetsDataset creation and management
hugging-face-model-trainerModel fine-tuning with TRL
hugging-face-evaluationModel evaluation workflows

Sentry

Code review, commit conventions, and PR automation.

SkillDescription
code-reviewSentry engineering code review practices
commitConventional commit messages
create-prPR creation following Sentry conventions
find-bugsBug 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 install

Build

npm run build

Run Tests

# Run all tests
npm test

# Run tests in watch mode
npm run test:watch

# Run integration tests only
npm run test:integration

Lint & Format

npm run lint
npm run format

Project 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:

  1. Create your documentation (recommended: use /docs folder):

    • Create a docs/ directory in your repository root
    • Add an index.html file or use a static site generator like VitePress or Docusaurus
    • This keeps documentation separate from source code
  2. Enable GitHub Pages:

    • Go to your repository Settings โ†’ Pages
    • Select Source: Deploy from a branch
    • Choose Branch: main and 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 /docs folder 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.



Made with โค๏ธ for the AI agent community
โญ Star the Awesome Agent Skills repository