Option A: ecp-bridge (local, reads your repo)
Runs the marketplace repo through a local MCP server. Good when your agent runs on your machine and your skills are already published.
- Publish your marketplace, so the repo exists and is readable.
- Add the block below to your MCP client's config file.
- Restart the client. Your skills appear as tools and prompts.
{
"mcpServers": {
"ecp-bridge": {
"command": "npx",
"args": ["-y", "ecp-bridge", "your-github/skills"]
}
}
}Replace your-github/skills with your own repo. One more argument is optional: add a comma-separated plugin list to serve only part of the marketplace, or leave it off to serve all of it.