github-pr-review-mcp copilot-instructions.md

github-pr-review-mcp copilot-instructions.md is an instructions file for GitHub Copilot from jamesjfoong/github-pr-review-mcp. It costs 566 tokens per session, scanned A, original, MIT.

A set of instructions for developing a GitHub pull-request review MCP server, including its architecture, core files, coding style, and steps for adding tools.

In plain words
What is it for?
Use it when adding an MCP tool, defining its Zod input schema, connecting it to the GitHub service, registering it, or following the project's TypeScript and formatting rules.
Why use it?
It gives contributors a clear map of the project and reduces guesswork when changing its GitHub review features.

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/jamesjfoong/github-pr-review-mcp/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/jamesjfoong/github-pr-review-mcp

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for github-pr-review-mcp copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/jamesjfoong/github-pr-review-mcp/copilot-instructions.svg)](https://agentmods.dev/instructions/jamesjfoong/github-pr-review-mcp/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/jamesjfoong/github-pr-review-mcp/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/jamesjfoong/github-pr-review-mcp/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 566 This file is loaded in full into every session.
When invoked 566 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.00566 $0.00566
Opus 5 $0.00283 $0.00283
Sonnet 5 $0.00113 $0.00113
Haiku 4.5 $0.00057 $0.00057

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

Security

Grade A, and why

github-pr-review-mcp 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 4d 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 · 74 lines

How it starts

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

GitHub Copilot Instructions for GitHub PR Review MCP

Project Context

This is a Model Context Protocol (MCP) server that provides GitHub PR review capabilities to AI clients. Built with TypeScript, FastMCP, and GitHub API.

Architecture

Core Files

  • src/index.ts - Register MCP tools here
  • src/github-service.ts - All GitHub API calls go through this service
  • src/code-analyzer.ts - Static code analysis (pure functions)
  • src/types.ts - Zod schemas and TypeScript types
  • src/review-prompt.ts - Review prompt generation

Adding New Tools (3 Steps)

  1. Define Zod schema in types.ts
  2. Add service method in github-service.ts using this.octokit
  3. Register tool in index.ts with server.addTool()

Code Standards

  • TypeScript: Strict mode, ES2022 modules
  • Strong typing: Always use explicit, strong types. Use Zod schemas for runtime validation, define explicit interface or type for TypeScript
  • Use ? for optional: Don't use | null | undefined, use optional properties (?) instead
  • Style: 2 spaces, double quotes, semicolons required, 80 char max line
  • Naming: kebab-case files, PascalCase classes, camelCase functions
  • Imports: External → internal, sorted alphabetically, use .js extension

Critical Rules

DO:

  • Use GitHubService for all GitHub API calls
  • Define Zod schemas in types.ts for all parameters
  • Run npm run validate before committing
  • Handle errors with try-catch, log with console.error
  • Update README.md when adding tools

DON'T:

  • Edit dist/ files (generated)
  • Use any unnecessarily
  • Bypass service layer
  • Skip validation
  • Break existing functionality

Error Handling

Always wrap GitHub API calls in try-catch:

try {
  const result = await this.octokit.pulls.get({...});
  return result.data;
} catch (error) {
  const message = error instanceof Error ? error.message : String(error);
  console.error("Error fetching PR:", message);
  throw new Error(`Failed to fetch PR: ${message}`);
}

Read the full file on GitHub · 74 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. 4d ago First seen · 74 lines · 566 tokens per session scan A 31d6e981040e

Subscribe to this mod's changes

github-pr-review-mcp copilot-instructions.md is an instructions file published in the GitHub repository jamesjfoong/github-pr-review-mcp (1 stars, last pushed 6mo ago), licensed MIT. It adds 566 tokens to every session, about $0.0028 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-31.