mcpc copilot-instructions.md

A set of coding rules for building MCPC servers, which are agent tools made by combining reusable MCP tools. It covers the server structure, tool references, dependencies, and Node-compatible code.

In plain words
What is it for?
Use it when developing MCPC servers, defining agent behavior, connecting MCP servers, and controlling which tools are available or hidden.
Why use it?
It gives an agent clear conventions for selecting and exposing tools, reducing guesswork when creating or changing an MCPC server.

Instructions file for GitHub Copilot

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/mcpc-tech/mcpc/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/mcpc-tech/mcpc

Made for: GitHub Copilot.

Per session 1,191 This file is loaded in full into every session.
When invoked 1,191 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01191 $0.01191
Opus 5 $0.00596 $0.00596
Sonnet 5 $0.00238 $0.00238
Haiku 4.5 $0.00119 $0.00119

Measured 3d ago against content hash d107ef3d89cb, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

mcpc copilot-instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/copilot-instructions.md · 174 lines

How it starts

The opening of the file, as written. The whole thing — 174 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MCPC Development Guide

MCPC lets you build agentic MCP servers by composing existing MCP tools. Think of it as creating AI agents from reusable tool libraries, the agent itself is a MCP tool too.

Rules

NEVER use deno specific APIs in code, use node compatible APIs only.

Core Pattern

Every MCPC server follows the same simple pattern:

const server = await mcpc(
  [{ name: "my-agent", version: "1.0.0" }, {
    capabilities: { tools: {} },
  }],
  [{
    name: "my-agent",
    description: "Agent docs with <tool name='server.tool'/> references",
    deps: { mcpServers: {/* MCP server configs */} },
    options: { mode: "agentic" },
  }],
);
await server.connect(new StdioServerTransport());

That's it. Three parts: server metadata, agent definition(s), transport connection.

Tool Selection with XML Tags

Reference tools in your agent description using XML-like syntax:

description: `
Available tools:
<tool name="desktop-commander.read_file"/>
<tool name="github.__ALL__"/>  // All tools from github server
<tool name="tool1" maxResultLength="2000"/>  // Limit result size
<tool name="sensitive" hide/>  // Hide from public interface
`;

Tool names are always servername.toolname. The framework auto-maps both server.tool and server_tool formats.

MCP Server Dependencies

Support all transport types: stdio, streamable-http, sse.

deps: {
  mcpServers: {
    "desktop-commander": {
      command: "npx",
      args: ["-y", "@wonderwhy-er/desktop-commander@latest"],
      transportType: "stdio"
    },
    "github": {
      transportType: "streamable-http",
      url: "https://api.githubcopilot.com/mcp/",
      headers: { "Authorization": "Bearer ${GITHUB_TOKEN}" }  // Env vars work
    }
  }
}

Execution Modes

  • mode: "agentic" (default): Interactive tool calls, agent decides next step
  • mode: "agentic_workflow": Structured steps (predefined or generated at runtime)
  • sampling: true: Autonomous execution in compatible clients (VS Code, etc.)

Read the full file on GitHub · 174 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 174 lines · 1,191 tokens per session scan A d107ef3d89cb

Subscribe to this mod's changes

mcpc copilot-instructions.md is an instructions file published in the GitHub repository mcpc-tech/mcpc (104 stars, last pushed 29d ago), licensed MIT. It adds 1,191 tokens to every session, about $0.0060 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.