plugin.market
Agent Plugins specification · v1

The registry for Agent Plugins

An index of open-source skills and MCP servers, packaged as self-contained plugins per the open spec and indexed straight from GitHub.

Registry stats

15

Plugins indexed

24

Skills

12

MCP servers

33

Categories

Anatomy of a plugin

An Agent Plugin is a self-contained directory: a plugin.json manifest at the root, with skills and MCP servers discovered from fixed locations inside it. Failure boundaries are non-fatal by design — a component that fails to load is skipped, and the rest of the plugin keeps working.

Read the Agent Plugins spec →
my-plugin/
├── plugin.json
├── skills/
│ ├── code-review/
│ │ └── SKILL.md
│ └── changelog/
│ └── SKILL.md
├── mcp.json
└── README.md

Built for agents

Every surface reads from the same index — humans get this site, agents get structured endpoints.

GET /api/v1/plugins

Search, filter, and page through the full index as plain JSON.

API reference →

POST /api/mcp

An MCP endpoint agents can call natively to query the registry from inside a session.

MCP endpoint →