Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"awesome-copilot": {
"args": [
"-y",
"awesome-copilot-mcp",
"start"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides access to awesome-copilot agents and collection resources.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'awesome-copilot-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked awesome-copilot-mcp against OSV.dev.
Click any tool to inspect its schema.
agentsProvides access to awesome-copilot agents
awesome-copilot://agents
promptsProvides access to awesome-copilot prompts
awesome-copilot://prompts
instructionsProvides access to awesome-copilot instructions
awesome-copilot://instructions
skillsProvides access to awesome-copilot skills with folder awareness
awesome-copilot://skills
collectionsProvides access to awesome-copilot collections
awesome-copilot://collections
pluginsProvides access to awesome-copilot plugins from external sources
awesome-copilot://plugins
hooksProvides access to awesome-copilot hooks
awesome-copilot://hooks
workflowsProvides access to awesome-copilot agentic workflows
awesome-copilot://workflows
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
Read, write, and manage files on the local filesystem
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Manage Supabase projects — databases, auth, storage, and edge functions
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
MCP Security Weekly
Get CVE alerts and security updates for Awesome Copilot MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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, sk