mcpbeat Sign in

Copilot Studio MCP Server

local only

Copilot Studio MCP runs on your own machine — the client starts it, so there is no endpoint to ping. 875 installs a week from npm. Last commit 14 Sep 2026.

Build, test, ship and maintain Microsoft Copilot Studio agents from the editor

Installs per day peak 290 · avg 9
a month agotoday
875
Installs / week
npm · copilot-studio-mcp
0
Stars
0 open issues
14 Sep 2026
Last commit
0 releases in 90 days
MIT
License
TypeScript

What the code does

We read the source, 17 h ago · rules 3dff92dd89df

Capabilities

What this server is able to do. For an MCP server this is often the job itself — a terminal server runs commands because that is what it is for. Listed so you know what you are plugging in, not as an accusation.

    const child = spawn(command, args, { detached: true, stdio: "ignore", windowsHide: true, windowsVerbatimArguments: opts.verbatim });
    const exe = (rel: string, fallback: string) => (fs.existsSync(path.join(system32, rel)) ? path.join(system32, rel) : fallback);

Is this your server and something here is wrong? Tell us — corrections are free and do not require a plan.

This code can reach further than it looks

We found places where it runs commands, builds paths or queries from values it is given. None of that is a flaw by itself — it becomes one when the code changes, and code changes quietly between releases. We re-read it on every one.

Three servers free · no card

Connect this server

This server runs on your own machine — install it with the package manager and the client starts it for you. Package name taken from the official registry entry.

run in your terminal
claude mcp add copilot-studio-mcp -- npx -y copilot-studio-mcp
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "copilot-studio-mcp": {
      "args": [
        "-y",
        "copilot-studio-mcp"
      ],
      "command": "npx"
    }
  }
}
~/.codex/config.toml
[mcp_servers.copilot-studio-mcp]
command = "npx"
args = ["-y", "copilot-studio-mcp"]
.cursor/mcp.json
{
  "mcpServers": {
    "copilot-studio-mcp": {
      "args": [
        "-y",
        "copilot-studio-mcp"
      ],
      "command": "npx"
    }
  }
}
.vscode/mcp.json
{
  "mcpServers": {
    "copilot-studio-mcp": {
      "args": [
        "-y",
        "copilot-studio-mcp"
      ],
      "command": "npx"
    }
  }
}

This one needs environment variables set before it will start: CPS_WORKSPACE (Agent workspace folder to start in (VS Code: ${workspaceFolder})), CPS_TENANT_ID (Entra tenant id for cs_login; defaults to organizations), CPS_CLIENT_ID (Your own app registration for cs_login; defaults to the first-party VS Code client id), CPS_READ_ONLY (Set to 1 to withhold every tool that can change an environment), CPS_TOOLS (Tool preset or glob list: core, authoring, admin, solutions, full). The author declared them in the registry entry; get the values from the project itself.

Alternatives to Copilot Studio MCP

same job, measured the same way
Godot MCP Runtime
by erodenn

Zero-addon MCP server for Godot 4: agents edit, run, and play-test the game.

1 340 installs/wk local only
Connic
by connic

Build, test, deploy, and operate Connic agents.

answering
Unity MCP
by shiranui-isuzu

Unity Editor automation for AI agents: scenes, prefabs, assets, shaders, Timeline, tests, builds.

local only
Splera
by sohaibt

A/B testing for vibe coders: create, track, and ship experiments from your AI coding agent.

20 installs/wk local only
FiveM MCP
by ziyacivan

Build, run and live-test FiveM servers with AI agents: RCON, DevCon, window control, mcpb bridge.

67 installs/wk local only
SAP ABAP MCP
by coaspe

Develop, test, analyze, and operate SAP ABAP systems through ADT from AI coding agents.

339 installs/wk local only
I
Imperal MCP
by imperalcloud

Build, validate, smoke-test & deploy Imperal declarative IR apps from any LLM or agent.

144 installs/wk local only
WpfPilot MCP
by skuzadev

Automate Windows WPF apps from AI agents with semantic UIA selectors and FlaUI test generation.

38 installs/wk local only

Copilot Studio MCP — questions

Answers built from our own checks of this server.

Why is there no uptime for Copilot Studio MCP?
Copilot Studio MCP runs on your own machine over stdio — there is no network address to reach, so uptime cannot be measured for it by anyone. What can be measured is adoption: the npm package copilot-studio-mcp was installed 875 times last week.
How do I connect Copilot Studio MCP?
Copy the ready config from this page — we generate it for Claude Code, Claude Desktop, Codex, Cursor and VS Code, each with the file path that client actually reads. It runs locally, so the command pulls copilot-studio-mcp straight from npm; nothing to host, nothing to sign up for.
How many people use Copilot Studio MCP?
The npm package copilot-studio-mcp was installed 875 times in the last week. We show installs rather than GitHub stars on purpose: a star is a bookmark, an install is someone actually running it.
Is Copilot Studio MCP open source?
Yes — it is published under the MIT licence, written in TypeScript and 0 stars on GitHub. The source link is on this page, so you can read exactly what it does with your data before you connect it.