MCP Hub
Back to servers

skill-ninja-mcp-server

An MCP server for discoverability and lifecycle management of AI agent skills, allowing users to search, install, and update tools from a curated index or GitHub.

Stars
1
Forks
1
Tools
9
Updated
Jan 6, 2026
Validated
Jan 9, 2026

Skill Ninja MCP Server 🥷

npm version License: MIT

Skill Ninja MCP Server on Glama

日本語版 README

An MCP (Model Context Protocol) server for searching, installing, and managing AI Agent Skills.

Works with MCP-compatible clients like Claude Desktop, Cursor, and VS Code.

Features

  • 🔍 Search skills by keyword from 140+ pre-indexed skills
  • 📥 Install skills to workspace (.github/skills/)
  • 📋 List installed skills
  • 💡 Get personalized recommendations based on workspace analysis
  • 🌐 Search GitHub for new skills
  • ➕ Add new skill sources

Installation

npm install -g skill-ninja-mcp-server

Or run directly with npx:

npx skill-ninja-mcp-server

Configuration

Claude Desktop

~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "skill-ninja": {
      "command": "npx",
      "args": ["skill-ninja-mcp-server"]
    }
  }
}

VS Code (mcp.json)

%APPDATA%\Code\User\mcp.json:

{
  "servers": {
    "skill-ninja": {
      "command": "npx",
      "args": ["skill-ninja-mcp-server"]
    }
  }
}

Environment Variables

VariableDescriptionDefault
GITHUB_TOKENGitHub API token (for rate limits)None
SKILL_NINJA_INDEX_DIRIndex storage directory~/.skill-ninja
LANGLanguage setting (e.g., ja_JP)System default

Available Tools

ToolDescription
skillNinja_searchSearch skills by keyword
skillNinja_installInstall a skill to workspace
skillNinja_uninstallUninstall a skill
skillNinja_listList installed skills
skillNinja_recommendGet popular skill recommendations
skillNinja_updateIndexUpdate the skill index
skillNinja_webSearchSearch skills on GitHub
skillNinja_addSourceAdd a new skill source
skillNinja_localizeTranslate skill descriptions

Usage Examples

💬 "Find Azure-related skills"
   → Calls skillNinja_search

💬 "Install the bicep-mcp skill"
   → Installs via skillNinja_install

💬 "Search GitHub for MCP servers"
   → Searches via skillNinja_webSearch

Development

# Clone
git clone https://github.com/aktsmm/skill-ninja-mcp-server
cd skill-ninja-mcp-server

# Install dependencies
npm install

# Build
npm run build

# Watch mode
npm run dev

License

MIT

Reviews

No reviews yet

Sign in to write a review