biopython-mcp CLAUDE.md

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

A project instruction file for a Model Context Protocol server built around BioPython. BioPython is a Python library for working with biological data, such as DNA sequences and protein structures.

In plain words
What is it for?
Use it when developing or maintaining the server, including running tests, formatting code, checking types, and starting the server.
Why use it?
It gives contributors the project overview, setup commands, testing steps, and code-quality checks in one place.

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/kmaneesh/biopython-mcp/claude-md.svg)](https://agentmods.dev/instructions/kmaneesh/biopython-mcp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/kmaneesh/biopython-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/kmaneesh/biopython-mcp/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,210 This file is loaded in full into every session.
When invoked 1,210 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.01210 $0.01210
Opus 5 $0.00605 $0.00605
Sonnet 5 $0.00242 $0.00242
Haiku 4.5 $0.00121 $0.00121

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

Security

Grade A, and why

biopython-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 4d 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 · 156 lines

How it starts

The opening of the file, as written. The whole thing — 156 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.

Project Overview

This is a Model Context Protocol (MCP) server that exposes BioPython library capabilities as tools for AI assistants. It allows AI models to perform bioinformatics operations like sequence analysis, alignment, database access, structural analysis, and phylogenetics.

Development Commands

Setup

pip install -e ".[dev]"

Running the Server

biopython-mcp
# Or directly:
python -m biopython_mcp.server

Testing

# Run all tests with coverage
pytest

# Run specific test file
pytest tests/test_sequence.py

# Run specific test class or function
pytest tests/test_sequence.py::TestTranslateSequence
pytest tests/test_sequence.py::TestTranslateSequence::test_translate_simple_dna

Code Quality

# Format code (REQUIRED before commit)
black biopython_mcp/ tests/

# Lint code
ruff check biopython_mcp/ tests/

# Type checking
mypy biopython_mcp/

IMPORTANT: Always run black before committing to ensure code passes CI lint checks. Quick pre-commit check:

black biopython_mcp/ tests/ && ruff check biopython_mcp/ tests/

Architecture

Tool Registration Pattern

The server uses FastMCP to expose BioPython functions as MCP tools. All tool functions follow this pattern:

  1. Tool modules (src/sequence.py, src/alignment.py, etc.) contain individual tool functions
  2. Each tool function returns a dictionary with {"success": bool, ...} format
  3. Central registration in src/server.py imports and registers all tools with mcp.tool()

To add a new tool:

  1. Create the function in the appropriate module (or create a new module)
  2. Ensure it returns a dict with success field
  3. Import and register it in src/server.py using mcp.tool()(your_function)

Error Handling Convention

All tool functions use try-except blocks and return error information in the response dict:

Read the full file on GitHub · 156 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. 4d ago First seen · 156 lines · 1,210 tokens per session scan A 59c1da5bec79

Subscribe to this mod's changes

biopython-mcp CLAUDE.md is an instructions file published in the GitHub repository kmaneesh/biopython-mcp (3 stars, last pushed 7mo ago), licensed MIT. It adds 1,210 tokens to every session, about $0.0060 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.