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.
npx agentmods add instructions/mcpc-tech/mcpc/copilot-instructionsgit clone --depth 1 https://github.com/mcpc-tech/mcpcWhat 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.
| Model | Per session | Once 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 |
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.
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 stepmode: "agentic_workflow": Structured steps (predefined or generated at runtime)sampling: true: Autonomous execution in compatible clients (VS Code, etc.)
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.
- 3d ago First seen · 174 lines · 1,191 tokens per session scan A d107ef3d89cb
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.
Other instructions, from other repositories
intervals-icu-mcp CLAUDE.md
Instructions for hhopke/intervals-icu-mcp, covering claude.md, project overview, development commands, architecture (quick reference) and tool categories.
ai-toolkit AGENTS.md
Instructions for pipefy/ai-toolkit, covering repository guidelines, documentation map, project structure, import namespace migration: pipefysdk → pipefy and src/pipefysdk/init.py (transitional shim).
flyto-core CLAUDE.md
Instructions for flytohub/flyto-core, covering claude notes, cross-agent handoff and shared code intelligence.
Plonk AGENTS.md
Instructions for ostapondo/Plonk, covering agent rules, layout, adding a module, build & verify and code style.
rosetta AGENTS.md
Instructions for tikoci/rosetta, covering codex instructions for rosetta, first reads, development defaults and mcp and client config.
pharo-smalltalk-interop-mcp-server CLAUDE.md
Instructions for mumez/pharo-smalltalk-interop-mcp-server, covering claude.md, project overview, development setup, environment variables and common commands.