helldivers2-mcp CLAUDE.md

helldivers2-mcp CLAUDE.md is an instructions file for coding agents from xerno42/helldivers2-mcp. It costs 1,234 tokens per session, scanned A, original, MIT.

Development instructions for a standalone server that gives AI models live Helldivers 2 galactic-war data through an MCP connection. It also describes the server's health check, source API, architecture, and development commands.

In plain words
What is it for?
Use it when developing this repository, such as running its TypeScript build, tests, linting, local server, or adding an MCP tool.
Why use it?
It gives coding agents the project context needed to build, run, test, and extend the server consistently.

Instructions file

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/xerno42/helldivers2-mcp/claude-md
Clone the repo
git clone --depth 1 https://github.com/xerno42/helldivers2-mcp

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 helldivers2-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/xerno42/helldivers2-mcp/claude-md.svg)](https://agentmods.dev/instructions/xerno42/helldivers2-mcp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/xerno42/helldivers2-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/xerno42/helldivers2-mcp/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,234 This file is loaded in full into every session.
When invoked 1,234 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.01234 $0.01234
Opus 5 $0.00617 $0.00617
Sonnet 5 $0.00247 $0.00247
Haiku 4.5 $0.00123 $0.00123

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

Security

Grade A, and why

helldivers2-mcp CLAUDE.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 5d 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.

CLAUDE.md · 99 lines

How it starts

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

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

What This Is

A standalone MCP server that exposes live Helldivers 2 galactic war data to LLMs. It uses the stateless Streamable HTTP transport: each POST /mcp request spins up a fresh McpServer + transport pair, handles the request, and tears them down. There is no session state.

The upstream data source is the community API at https://api.helldivers2.dev. A GET /health endpoint is also served for liveness checks.

Development Commands

npm run dev              # tsx watch — hot reload
npm run build            # tsc → dist/
npm run start            # node dist/index.js (after build)
npm run lint             # eslint src
npm run test             # Jest (ESM mode via --experimental-vm-modules)
npm run test:watch
npm run test:coverage

Run a single test file:

npm run test src/__tests__/tools.war.test.ts

Architecture

src/
  index.ts           — Express app, MCP server factory, request routing, origin guard, incoming rate limiter
  client.ts          — hd2Fetch(): in-memory cache + rate-limit queue over api.helldivers2.dev
  rate-limit.ts      — createRateLimiter(): token-bucket middleware for incoming /mcp requests (per-IP)
  reference-data.ts  — reads json/ files at startup, exposes lookup helpers
  format-planet.ts   — loadWarSnapshot() (fetches 3 endpoints in parallel), formatPlanetDetails(), formatActivePlanetSummary()
  tool-types.ts      — Tool / ToolDefinition / ToolResult / ToolHandler interfaces
  utils.ts           — textResponse(), errorResponse(), stripMarkup helpers, toRelativeTime()
  enums.ts           — game enum maps (Races, AssignmentTypes, difficulty levels, etc.)
  api-types.ts       — raw API response types (RawWarStatus, RawPlanetInfo, etc.)
  tools/
    war.ts           — get_war_status
    planets.ts       — get_all_planets, get_planet_details
    assignments.ts   — get_assignments
    news.ts          — get_dispatches, get_steam_news
    dss.ts           — get_space_station_details
json/                — static reference data files (planets, biomes, factions, effects, items…)

Read the full file on GitHub · 99 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. 5d ago First seen · 99 lines · 1,234 tokens per session scan A 3b8819cdb051

Subscribe to this mod's changes

helldivers2-mcp CLAUDE.md is an instructions file published in the GitHub repository xerno42/helldivers2-mcp (2 stars, last pushed 14d ago), licensed MIT. It adds 1,234 tokens to every session, about $0.0062 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.