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/cuongph-dev-work/backlog_mcp/agents-mdgit clone --depth 1 https://github.com/cuongph-dev-work/backlog_mcpWhat 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.02920 | $0.02920 |
| Opus 5 | $0.01460 | $0.01460 |
| Sonnet 5 | $0.00584 | $0.00584 |
| Haiku 4.5 | $0.00292 | $0.00292 |
Grade A, and why
backlog_mcp AGENTS.md scanned grade A with 1 finding 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 yesterday.
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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
3. **HTTP-first for Backlog access.** All Backlog REST API calls go through `src/backlog/http-client.ts` using Axios. The API Key is injected automatically via `axios.create({ params: { apiKey } })`. How it starts
The opening of the file, as written. The whole thing — 196 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — Agent Instructions for backlog-mcp
This file is the canonical instruction set for any AI agent working on this project. Read this file in full before starting any task.
What Is This Project?
backlog-mcp is a TypeScript MCP (Model Context Protocol) server that provides AI agents with read access to a Backlog (Nulab) space. Authentication uses a static API Key stored in .env — no browser or Playwright session required.
Architecture Rules
-
Server uses factory pattern. Each incoming MCP request gets a new
McpServer+StreamableHTTPServerTransportpair. Never reuse a server instance across requests. -
Auth is a config concern, not a tool concern. The
BacklogHttpClientreceivesapiKeyfromconfigat construction time. Tool handlers never touch auth directly. -
HTTP-first for Backlog access. All Backlog REST API calls go through
src/backlog/http-client.tsusing Axios. The API Key is injected automatically viaaxios.create({ params: { apiKey } }). -
Zod validates everything. Environment variables (
src/config.ts) and tool inputs (each tool's schema) are all validated with Zod before use. -
Two-layer type system. Raw Backlog API response types live in
src/types/backlog-api.ts. Normalized domain types used by handlers live insrc/types.ts. Mappers insrc/backlog/mappers.tsbridge the two. Never use raw types outside ofhttp-client.tsandmappers.ts.
Coding Standards
- TypeScript strict mode. No
any. No implicit types. - ESM with
.jsextensions. All imports must end in.js(NodeNext module resolution). - Errors use
McpError. Every business error must use theMcpErrorclass with a typed code. Use factory helpers fromsrc/errors.ts. - Tool errors set
isError: true. MCP clients rely on this flag. Never return an error as normal content. - 401/403 from Backlog = invalid API key.
assertOk()in the HTTP client handles this — tool handlers just catchMcpError. - Utility functions in
src/utils.ts. Shared helpers (e.g. date formatting, string manipulation) must live insrc/utils.ts, not inline in tool or handler files. - Prefer libraries over hand-rolled code. For common tasks (date formatting, etc.), use well-known npm packages instead of writing custom implementations.
- Raw API response types in
src/types/backlog-api.ts. Types that mirror the exact shape of Backlog REST API responses must live there, separate from the normalized application interfaces insrc/types.ts.
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.
- yesterday First seen · 196 lines · 2,920 tokens per session scan A 1c37395a42e2
backlog_mcp AGENTS.md is an instructions file published in the GitHub repository cuongph-dev-work/backlog_mcp (0 stars, last pushed 4mo ago), licensed MIT. It adds 2,920 tokens to every session, about $0.0146 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
planning-with-files AGENTS.md
AGENTS.md instructions for OthmanAdi/planning-with-files, covering agents.md — planning-with-files agent reference card, commit rules, release checklist (12 steps), version bump scope and changelog format.
DevoxxGenieIDEAPlugin GEMINI.md
Instructions for devoxx/DevoxxGenieIDEAPlugin, a project described as: DevoxxGenie is an agentic plugin for IntelliJ IDEA that uses local LLM's (Ollama, LMStudio, GPT4All, Jan and Llama.cpp) and Cloud based LLMs to help review, test, explain your project code. Latest version now also supports Spec Driven Development…
autoharness AGENTS.md
Instructions for tigerless-labs/autoharness: This repo uses Open Knowledge — collaborative markdown via MCP. .open-knowledge/config.yml (with optional /.open-knowledge/config.yml; CLI/env may override) is the path contract: content.dir is the root for relative paths; content.include lists globs that add markdown…
squarebox CLAUDE.md
Instructions for SquareWaveSystems/squarebox, covering claude.md, agent skills, issue tracker, triage labels and domain docs.
mcpelevator CLAUDE.md
Instructions for pacnpal/mcpelevator, covering commands, architecture, conventions, agent skills and issue tracker.
clawchat-plugin-connect AGENTS.md
Instructions for XMethues/clawchat-plugin-connect, covering agent skills, issue tracker, triage labels and domain docs.