Back to Browse

Awesome Copilot MCP Server

Developer ToolsUse Caution4.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Model Context Protocol server for awesome-copilot agents and collections

About

Model Context Protocol server for awesome-copilot agents and collections

Security Report

4.2
Use Caution4.2High Risk

This MCP server provides read-only access to GitHub Copilot resources with a well-structured codebase. Authentication is not required for basic operations (appropriate for a public index server), and code quality is generally good with proper error handling and input validation. The primary concerns are minor: overly broad exception handling in a few places, potential for path traversal in search/tag parsing (though mitigated by the narrow scope of operations), and lack of explicit rate-limiting for GitHub API calls. Permissions align well with the server's purpose as a resource indexer. Supply chain analysis found 7 known vulnerabilities in dependencies (0 critical, 2 high severity). Package verification found 1 issue.

4 files analyzed ยท 14 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-rbbtsn0w-awesome-copilot-mcp": {
      "args": [
        "-y",
        "awesome-copilot-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Awesome Copilot MCP Server

npm version License: MIT Build Status

A Model Context Protocol (MCP) server that provides access to awesome-copilot agents and collection resources.

Quick Start

One-Click Installation for VS Code

Click the badge to install directly in VS Code (will prompt to open VS Code):

Install in VS Code Install in VS Code Insiders

Note: Requires GitHub Copilot extension in VS Code. Click the badge on GitHub to trigger the installation prompt.

Manual Configuration

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.

Usage

As MCP Server

Standard stdio usage (default). See configuration above.

As HTTP / OpenAPI Server

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 check
  • GET /metadata Return metadata index
  • GET /metadata/stream SSE streaming output of metadata
  • GET /search?q=kw Search
  • GET /openapi.json API Documentation

Supported Content Types

This server now indexes all resources published in the official github/awesome-copilot repository:

  • ๐Ÿค– Agents
  • ๐Ÿ’ฌ Prompts
  • ๐Ÿ“‹ Instructions
  • ๐Ÿ› ๏ธ Skills (folder-aware)
  • ๐Ÿ“ฆ Collections
  • ๐ŸŽ Plugins (from plugins/external.json)
  • ๐Ÿช Hooks
  • โšก Agentic Workflows

Debugging

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

Architecture

This server uses a Bundled + In-Memory architecture for maximum reliability:

  1. Startup: Loads metadata.json bundled directly within the npm package. Zero external dependencies.
  2. Hot Updates: refresh_metadata fetches the latest data from GitHub and stores it in memory for the current session.
  3. Sandbox Friendly: No local disk cache (~/.cache) is used, preventing permission issues in restricted environments (e.g., macOS App Sandbox).

Environment Variables

VariableDescription
ACP_METADATA_URLOptional. URL to a hosted metadata.json (e.g. https://yourname.github.io/repo/metadata.json). Overrides GitHub raw fetch.
ACP_REPOS_JSONCustom repository configuration JSON.

Metadata Generation

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.

Development

# Install dependencies
npm install

# Build
npm run build

# Run tests
npm test

License

MIT

Reviews

No reviews yet

Be the first to review this server!