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.
curl -O https://raw.githubusercontent.com/lidless-labs/mitre-mcp/main/AGENTS.mdgit clone --depth 1 https://github.com/lidless-labs/mitre-mcpWrote 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.
[](https://agentmods.dev/instructions/lidless-labs/mitre-mcp/agents-md)<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>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.
| Model | Per session | Once 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 |
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.
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-mcpwith bindist/index.js. src/index.tsis the only entry point (tsup bundles it to ESM with a node shebang). Adding a tool file? Export aregister*Tools(server, store)function and wire it insrc/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, plusconfig.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 lintis an alias, bothtsc --noEmit). - Iterating on one area: run
npx vitest run tests/<file>.test.ts. Tests live intests/(parser, tools, mapping, soc-security). - Packaging or entry-point change: run
npm run build(tsup). - Before claiming green: run the full Definition of Done.
prepublishOnlyruns 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, andmitre_cortex_run_analyzers. Each must gate onwritesAllowed()fromsrc/soc/util.ts: default dry run, execution only with per-callconfirm: trueorMITRE_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_analyzersis the highest-impact tool: it submits live analyzer jobs including sandbox detonation. Touching it? Re-runnpx vitest run tests/soc-security.test.tsand 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.internalplaceholders.
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.
- 6d ago First seen · 47 lines · 1,139 tokens per session scan A ea05ffceed08
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.
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.
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.
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).
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).
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.
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.