Server data from the Official MCP Registry
Model Context Protocol server for awesome-copilot agents and collections
Model Context Protocol server for awesome-copilot agents and collections
This MCP server provides access to GitHub-hosted awesome-copilot resources with a well-structured architecture. Authentication is not required for basic operations, which is appropriate for a public resource aggregator. The code is generally well-written with proper error handling and input validation. Minor concerns include broad exception handling and some logging of potentially sensitive data, but these do not pose significant security risks for the server's intended purpose. Supply chain analysis found 7 known vulnerabilities in dependencies (0 critical, 2 high severity). Package verification found 1 issue.
4 files analyzed ยท 13 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-rbbtsn0w-awesome-copilot-mcp": {
"args": [
"-y",
"awesome-copilot-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
A Model Context Protocol (MCP) server that provides access to awesome-copilot agents and collection resources.
Click the badge to install directly in VS Code (will prompt to open VS Code):
Note: Requires GitHub Copilot extension in VS Code. Click the badge on GitHub to trigger the installation prompt.
Add to your MCP Client configuration (e.g., Claude Desktop or VS Code):
{
"mcpServers": {
"awesome-copilot": {
"command": "npx",
"args": ["-y", "awesome-copilot-mcp", "start"]
}
}
}
This ensures you always run the latest version.
Standard stdio usage (default). See configuration above.
Run locally for remote access or OpenAPI testing:
npx -y awesome-copilot-mcp start-http --port 8080 --host 0.0.0.0
Available endpoints:
GET /health Health checkGET /metadata Return metadata indexGET /metadata/stream SSE streaming output of metadataGET /search?q=kw SearchGET /openapi.json API DocumentationThis server now indexes all resources published in the official github/awesome-copilot repository:
plugins/external.json)MCP Inspector is the recommended way to test and debug:
# Debug via Stdio (Recommended)
npx -y awesome-copilot-mcp debug --no-build
# Debug via HTTP
npm run inspect:http
This server uses a Bundled + In-Memory architecture for maximum reliability:
metadata.json bundled directly within the npm package. Zero external dependencies.refresh_metadata fetches the latest data from GitHub and stores it in memory for the current session.~/.cache) is used, preventing permission issues in restricted environments (e.g., macOS App Sandbox).| Variable | Description |
|---|---|
ACP_METADATA_URL | Optional. URL to a hosted metadata.json (e.g. https://yourname.github.io/repo/metadata.json). Overrides GitHub raw fetch. |
ACP_REPOS_JSON | Custom repository configuration JSON. |
Automated: GitHub Actions runs daily to fetch the latest metadata from github/awesome-copilot and publishes a new npm version if changes are detected.
Internal: The metadata file is lightweight (~170 KB) containing only index info. Actual content and download targets for agents, prompts, instructions, skills, collections, plugins, hooks, and workflows are resolved on-demand via the exposed tools and resources.
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
MIT
Be the first to review this server!
by Modelcontextprotocol ยท Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace ยท Developer Tools
Create, build, and publish Python MCP servers to PyPI โ conversationally.