backlog_mcp AGENTS.md

Repository instructions for backlog-mcp, a TypeScript MCP server that gives agents read access to a Nulab Backlog workspace through its API.

In plain words
What is it for?
Use them when changing the server, its configuration, API client, tools, or validation code.
Why use it?
They keep authentication, request validation, server creation, and Backlog API access consistent across the project.

Instructions file for CodexOpenCode

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/cuongph-dev-work/backlog_mcp/agents-md
Clone the repo
git clone --depth 1 https://github.com/cuongph-dev-work/backlog_mcp

Made for: Codex, OpenCode.

Per session 2,920 This file is loaded in full into every session.
When invoked 2,920 The same file — it is already loaded in full.
Security scan A 1 finding. 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.02920 $0.02920
Opus 5 $0.01460 $0.01460
Sonnet 5 $0.00584 $0.00584
Haiku 4.5 $0.00292 $0.00292

Measured yesterday against content hash 1c37395a42e2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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 } })`.
AGENTS.md · 196 lines

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

  1. Server uses factory pattern. Each incoming MCP request gets a new McpServer + StreamableHTTPServerTransport pair. Never reuse a server instance across requests.

  2. Auth is a config concern, not a tool concern. The BacklogHttpClient receives apiKey from config at construction time. Tool handlers never touch auth directly.

  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 } }).

  4. Zod validates everything. Environment variables (src/config.ts) and tool inputs (each tool's schema) are all validated with Zod before use.

  5. Two-layer type system. Raw Backlog API response types live in src/types/backlog-api.ts. Normalized domain types used by handlers live in src/types.ts. Mappers in src/backlog/mappers.ts bridge the two. Never use raw types outside of http-client.ts and mappers.ts.

Coding Standards

  • TypeScript strict mode. No any. No implicit types.
  • ESM with .js extensions. All imports must end in .js (NodeNext module resolution).
  • Errors use McpError. Every business error must use the McpError class with a typed code. Use factory helpers from src/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 catch McpError.
  • Utility functions in src/utils.ts. Shared helpers (e.g. date formatting, string manipulation) must live in src/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 in src/types.ts.

Read the full file on GitHub · 196 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. yesterday First seen · 196 lines · 2,920 tokens per session scan A 1c37395a42e2

Subscribe to this mod's changes

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.

Related

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.

OthmanAdi/planning-with-files · 2,236 tokens

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…

devoxx/DevoxxGenieIDEAPlugin · 257 tokens

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…

tigerless-labs/autoharness · 2,201 tokens

squarebox CLAUDE.md

Instructions for SquareWaveSystems/squarebox, covering claude.md, agent skills, issue tracker, triage labels and domain docs.

SquareWaveSystems/squarebox · 1,772 tokens

mcpelevator CLAUDE.md

Instructions for pacnpal/mcpelevator, covering commands, architecture, conventions, agent skills and issue tracker.

pacnpal/mcpelevator · 2,626 tokens

clawchat-plugin-connect AGENTS.md

Instructions for XMethues/clawchat-plugin-connect, covering agent skills, issue tracker, triage labels and domain docs.

XMethues/clawchat-plugin-connect · 715 tokens