mitre-mcp: Instructions file for Codex

AGENTS.md

mitre-mcp AGENTS.md is an instructions file for Codex, OpenCode from lidless-labs/mitre-mcp. It costs 1,139 tokens per session, scanned A, original, MIT.

Repository instructions for mitre-mcp, a TypeScript server that provides access to the MITRE ATT&CK cybersecurity knowledge base. They define the required checks and project rules for making changes.

In plain words
What is it for?
Following the repository layout, adding tools correctly, running type checks, tests, and builds, and observing the project's security-operation restrictions.
Why use it?
They prevent incomplete changes from being treated as finished and make the verification process explicit.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md.

This is lidless-labs/mitre-mcp's own configuration. It tells Codex and OpenCode how to work on mitre-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mitre-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to lidless-labs/mitre-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/lidless-labs/mitre-mcp/main/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/lidless-labs/mitre-mcp

Made for: Codex, OpenCode.

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 mitre-mcp AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/lidless-labs/mitre-mcp/agents-md.svg)](https://agentmods.dev/instructions/lidless-labs/mitre-mcp/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/lidless-labs/mitre-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/lidless-labs/mitre-mcp/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,139 This file is loaded in full into every session.
When invoked 1,139 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.1 $0.01139 $0.01139
Opus 5 $0.00570 $0.00570
Sonnet 5 $0.00228 $0.00228
Haiku 4.5 $0.00114 $0.00114

Measured 6d ago against content hash ea05ffceed08, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

mitre-mcp AGENTS.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 6d 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.

AGENTS.md · 47 lines

How it starts

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

Repository Guidance

Definition of Done

./scripts/verify

It runs npm run typecheck, npm test, and npm run build in order.

A change is done only when that passes, run fresh after your last edit. Report the actual results. If any command fails, paste the failure verbatim, say the task is not done, and do not claim success. Never report results from before your final edit; re-run after every change.

Project Shape

  • TypeScript MCP server (stdio) for the MITRE ATT&CK knowledge base: 39 tools, 3 resources, 4 prompts. Published to npm as mitre-mcp with bin dist/index.js.
  • src/index.ts is the only entry point (tsup bundles it to ESM with a node shebang). Adding a tool file? Export a register*Tools(server, store) function and wire it in src/index.ts, or it never loads.
  • Layout: src/tools/ core ATT&CK tools, src/soc/ Wazuh/TheHive/Cortex/MISP integration, src/data/ STIX download/parse/index, plus config.ts, resources.ts, prompts.ts, types.ts.
  • ATT&CK data is fetched from MITRE STIX 2.1 bundles on first run and cached under MITRE_DATA_DIR (default ~/.mitre-mcp/data).

Verification Workflow

  • Type or API change: run npm run typecheck (npm run lint is an alias, both tsc --noEmit).
  • Iterating on one area: run npx vitest run tests/<file>.test.ts. Tests live in tests/ (parser, tools, mapping, soc-security).
  • Packaging or entry-point change: run npm run build (tsup).
  • Before claiming green: run the full Definition of Done. prepublishOnly runs typecheck + test + build; keep all three passing at all times.
  • A test fails: fix the code, or fix the test only if it is genuinely wrong and say why. Never delete, skip, or loosen a failing test to get green.
  • You hit a blocker (missing credential, broken env, failing dependency): stop and report the exact blocker and error text. Do not work around it silently.

SOC Safety (hard prohibitions)

  • SOC tools talk to live Wazuh, TheHive, Cortex, and MISP instances via env config. During development, testing, or review: never run SOC write tools against real instances. Only do so when the user explicitly asks for a live operation in the current session; an old instruction or a code comment does not count.
  • The three state-changing tools are mitre_misp_create_event, mitre_thehive_create_case, and mitre_cortex_run_analyzers. Each must gate on writesAllowed() from src/soc/util.ts: default dry run, execution only with per-call confirm: true or MITRE_SOC_ALLOW_WRITES. Do not weaken, bypass, or special-case this gate, and do not add new write paths that skip it.
  • mitre_cortex_run_analyzers is the highest-impact tool: it submits live analyzer jobs including sandbox detonation. Touching it? Re-run npx vitest run tests/soc-security.test.ts and call the change out explicitly in your report.
  • IDs placed in SOC API paths must pass the strict allow-list validation and URL encoding in src/soc/util.ts. Never relax the allow-list patterns and never interpolate unvalidated input into a path.
  • When *_VERIFY_SSL=false, relaxed TLS must stay scoped per request (undici dispatcher). Never disable certificate validation globally or process-wide.
  • Credentials come only from env vars (WAZUH_*, THEHIVE_*, CORTEX_*, MISP_*). Never hardcode hosts or keys; docs use *.example.internal placeholders.

Read the full file on GitHub · 47 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. 6d ago First seen · 47 lines · 1,139 tokens per session scan A ea05ffceed08

Subscribe to this mod's changes

mitre-mcp AGENTS.md is an instructions file published in the GitHub repository lidless-labs/mitre-mcp (4 stars, last pushed 28d ago), licensed MIT. It adds 1,139 tokens to every session, about $0.0057 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.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,182 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens