openfda-mcp-server AGENTS.md

openfda-mcp-server AGENTS.md is an instructions file for Codex, OpenCode from colbyw5/openfda-mcp-server. It costs 467 tokens per session, scanned A, original, MIT.

A repository guide for an MCP server that provides access to U.S. Food and Drug Administration data. MCP is a way for an AI client to communicate with an external tool server.

In plain words
What is it for?
Use it when running, testing, linting, formatting, or type-checking the server, especially when launching it from an application without a normal working directory.
Why use it?
It explains how to start the server, how its command-line environment affects launching, what the FDA API key changes, and which development checks to run.

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/colbyw5/openfda-mcp-server/agents-md
Clone the repo
git clone --depth 1 https://github.com/colbyw5/openfda-mcp-server

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/colbyw5/openfda-mcp-server/agents-md.svg)](https://agentmods.dev/instructions/colbyw5/openfda-mcp-server/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/colbyw5/openfda-mcp-server/agents-md"><img src="https://agentmods.dev/badge/instructions/colbyw5/openfda-mcp-server/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 467 This file is loaded in full into every session.
When invoked 467 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.00467 $0.00467
Opus 5 $0.00234 $0.00234
Sonnet 5 $0.00093 $0.00093
Haiku 4.5 $0.00047 $0.00047

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

Security

Grade A, and why

openfda-mcp-server 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 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.

AGENTS.md · 44 lines

What it actually says

AGENTS.md

Operational notes for coding agents working in this repo.

Running the server

pixi run serve
# or, once installed:
openfda-mcp-server

Communicates over stdio — it's meant to be launched by an MCP client, not run standalone for interactive use.

Requires FDA_API_KEY in the environment or a .env file at the repo root (loaded automatically via python-dotenv). The server works without a key at a lower rate limit (1k req/hr vs 120k req/hr), so its absence won't break anything, just throttle it.

Launch gotcha: if the host that spawns this server doesn't set the working directory (e.g. Claude Desktop, which launches as a GUI process with no shell PATH/cwd), pixi run serve alone will fail to find pixi.toml. Use an absolute path to pixi plus --manifest-path instead of relying on cwd:

/opt/homebrew/bin/pixi run --manifest-path /abs/path/to/openfda-mcp-server/pixi.toml serve

Dev commands

pixi run test       # pytest, offline (respx-mocked), integration tests excluded by default
pixi run lint        # ruff check
pixi run fmt          # ruff format
pixi run typecheck  # pyright

Run all four after any code change; CI (.github/workflows/ci.yml) runs lint/typecheck/test on push and PR.

Layout

src/openfda_mcp_server/
├── client.py   # FDAClient — async httpx wrapper around the openFDA REST API, retry/backoff, endpoint registry
├── server.py   # FastMCP entry point, lifespan-managed FDAClient
└── tools.py    # MCP tool definitions/handlers — this is where new search tools get added

Tool definitions and their docstrings (which the LLM sees as tool descriptions) live in tools.py. New openFDA endpoints need an entry in ENDPOINTS in client.py plus a corresponding @mcp_server.tool() function in tools.py.

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 · 44 lines · 467 tokens per session scan A fde4dc19e529

Subscribe to this mod's changes

openfda-mcp-server AGENTS.md is an instructions file published in the GitHub repository colbyw5/openfda-mcp-server (0 stars, last pushed 1mo ago), licensed MIT. It adds 467 tokens to every session, about $0.0023 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

bio-gene-to-reference-tree copilot-instructions.md

Copilot instructions for Hongda-Zhao/bio-gene-to-reference-tree, a project described as: Auditable agent skill for resolving protein queries, selecting references, and planning reproducible phylogenetic trees.

Hongda-Zhao/bio-gene-to-reference-tree · 105 tokens

braina GEMINI.md

Instructions for brainets/braina, covering project: braina (brain interaction analysis), 1. project context & purpose, 2. commands, verify environment (all core dependencies) and run the verification test suite for frites + hoi.

brainets/braina · 1,269 tokens

research-automation CLAUDE.md

Instructions for lucafusarbassini/research-automation, covering ricet - research automation framework, project overview, claude-flow mcp, workflow habits and file organization.

lucafusarbassini/research-automation · 904 tokens

shannon-prover CLAUDE.md

Claude Code instructions for SkyShannonProver/shannon-prover, covering shannon prover: claude entry point, current boundary, easycrypt environment, eval safety and current documentation.

SkyShannonProver/shannon-prover · 586 tokens

SciCrucible CLAUDE.md

Claude Code instructions for Xinyang-Li666/SciCrucible, covering 科学知识库, 知识库结构, 可用命令, 项目目录 and 工作原则.

Xinyang-Li666/SciCrucible · 1,107 tokens

torchcell CLAUDE.md

Claude Code instructions for Mjvolk3/torchcell, covering vision -- the virtual cell (north star), for local configs, git worktrees, programming guide and provenance & reproducibility.

Mjvolk3/torchcell · 12,957 tokens