Description

Official Microsoft lab for creating MCP servers and using them in Copilot Studio.

Installation

npx -y microsoft-copilot-mcp
npm install microsoft-copilot-mcp
git clone https://github.com/microsoft/mcsmcp

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "microsoft-copilot-studio-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "microsoft-copilot-mcp"
      ]
    }
  }
}