loading…
Search for a command to run...
loading…
Enables discovery and installation of agent skills from curated GitHub repositories, allowing users to search large collections and inspect skill contents direc
Enables discovery and installation of agent skills from curated GitHub repositories, allowing users to search large collections and inspect skill contents directly. It supports downloading skills locally and provides grounded scaffolds for creating new skills based on existing patterns.
pinkpixel-agentskills-mcp is a stdio MCP server for discovering, reading, and downloading agent skills from curated GitHub repositories.
GitHub: https://github.com/pinkpixel-dev/agentskills-mcp
It is built for a practical workflow:
This server exists because a large skill library is only useful if an agent can actually find the right skill quickly.
With more than 1,600 collected skills spread across curated repositories, manual browsing becomes slow and noisy. This MCP server gives agents a direct way to search those collections, inspect likely matches, and install the right skill when it is needed.
Skills are genuinely useful when they are easy to discover and apply in context. The goal here is to make a large curated skill archive feel usable instead of overwhelming.
github_skills_list_repositoriesgithub_skills_search_skillsgithub_skills_get_skillgithub_skills_install_skillgithub_skills_suggest_skill_scaffoldExample user request:
Can you use the pinkpixel-agentskills-mcp tools and find skills for Rust development?
Example result:
skills-collection-2:rust-pro and skills-collection-2:rust-async-patterns.This is especially helpful when a broad keyword search would otherwise return noisy matches, such as rust appearing inside trust.
Run from PyPI with uvx:
uvx pinkpixel-agentskills-mcp
If your environment still prefers the explicit package-to-command form, this works too:
uvx --from pinkpixel-agentskills-mcp agentskills-mcp
Register it in Claude:
claude mcp add github-skills -- uvx pinkpixel-agentskills-mcp
With a GitHub token for better rate limits:
claude mcp add github-skills --env GITHUB_TOKEN=$GITHUB_TOKEN -- uvx pinkpixel-agentskills-mcp
The server ships with these built-in default sources:
pinkpixel-dev/skills-collection-1pinkpixel-dev/skills-collection-2That means the server works out of the box with no repos.json at all.
Users can add more repositories in either of these ways:
repos.json in the project root by copying repos.example.jsonGITHUB_SKILLS_REPOS to a JSON array with the same schemaEach repo entry supports:
name: short alias used in skill slugsowner: GitHub owner or orgrepo: GitHub repo nameref: branch or tag to read fromroot: optional subdirectory that contains skillsgithub_token_env: optional environment variable holding a GitHub tokenFor public repositories, a GitHub token is optional. Users can run anonymously, or provide their own GITHUB_TOKEN for higher rate limits.
For private repositories, each user should provide their own token with the access they need. Do not ship your personal token with the server.
name as a built-in repo, the custom one wins.GITHUB_SKILLS_REPLACE_DEFAULTS=true.GITHUB_SKILLS_INCLUDE_DEFAULTS=false.For local development:
uv sync
If a user wants to add more sources, they can create repos.json from the example:
cp repos.example.json repos.json
This is a stdio server. To run it locally from the repo:
uv run agentskills-mcp
For a quick smoke test without leaving a hanging process:
timeout 5s uv run agentskills-mcp
claude mcp add github-skills --env GITHUB_TOKEN=$GITHUB_TOKEN -- uv run agentskills-mcp
For public repos, users can also add the server without any token:
claude mcp add github-skills -- uv run agentskills-mcp
If you also want a default install target for downloaded skills:
claude mcp add github-skills \
--env GITHUB_TOKEN=$GITHUB_TOKEN \
--env GITHUB_SKILLS_INSTALL_ROOT=/absolute/path/to/skills \
-- uv run agentskills-mcp
The published package name is pinkpixel-agentskills-mcp.
The server command is available as both:
pinkpixel-agentskills-mcpagentskills-mcpThat means the most convenient public install path is:
uvx pinkpixel-agentskills-mcp
If you ever hit an environment that does not pick the matching executable automatically, use:
uvx --from pinkpixel-agentskills-mcp agentskills-mcp
For release steps, see PUBLISHING.md.
stdio, not HTTP/SSE transport.SKILL.md files in configured repos.Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"agent-skills-mcp": {
"command": "npx",
"args": []
}
}
}PRs, issues, code search, CI status
Database, auth and storage
Reference / test server with prompts, resources, and tools.
Secure file operations with configurable access controls.