Borrowing it
Nothing to install: this file belongs to danielscholl/mvn-mcp-server. 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/danielscholl/mvn-mcp-server/main/CLAUDE.mdgit clone --depth 1 https://github.com/danielscholl/mvn-mcp-serverWrote 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/danielscholl/mvn-mcp-server/claude-md)<a href="https://agentmods.dev/instructions/danielscholl/mvn-mcp-server/claude-md"><img src="https://agentmods.dev/badge/instructions/danielscholl/mvn-mcp-server/claude-md/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/instructions/danielscholl/mvn-mcp-server/claude-md"><img src="https://agentmods.dev/badge/instructions/danielscholl/mvn-mcp-server/claude-md.svg" alt="Reviewed on agentmods" width="80" 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.01707 | $0.01707 |
| Opus 5 | $0.00853 | $0.00853 |
| Sonnet 5 | $0.00341 | $0.00341 |
| Haiku 4.5 | $0.00171 | $0.00171 |
Grade A, and why
mvn-mcp-server 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 9d 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 — 188 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file guides AI assistants working with the Maven MCP Server codebase.
Project Context
Maven MCP Server provides Model Context Protocol access to Maven Central repository for dependency management. It features intelligent caching, comprehensive version parsing, and security scanning capabilities optimized for AI-assisted development workflows.
Build/Test Commands
- Install dependencies:
uv sync - Install in dev mode:
uv pip install -e ".[dev]" - Run all tests:
uv run pytest - Run specific test:
uv run pytest src/mvn_mcp_server/tests/tools/test_check_version.py - Run specific test function:
uv run pytest src/mvn_mcp_server/tests/tools/test_check_version.py::TestCheckVersion::test_success
Testing Guidelines & Troubleshooting
Async Test Requirements
- IMPORTANT: Async tests require
pytest-asyncioplugin (included in dev dependencies) - Verify async plugin is installed:
uv run pytest --versionshould showasyncio-X.X.X - If async tests fail with "async def functions are not natively supported", ensure dev dependencies are installed:
uv pip install -e ".[dev]"
CI Environment Simulation
# Test with exact CI environment setup
uv sync --frozen # Use locked dependencies
uv pip install -e ".[dev]" # Install with all dev dependencies
uv run pytest --cov=src/mvn_mcp_server --cov-report=xml --cov-report=term-missing --cov-fail-under=70 -v
Common CI Failures
- Async test failures: Missing pytest-asyncio → Add to dev dependencies and update uv.lock
- Coverage below 70%: Run coverage locally with exact CI command above
- Import errors: Ensure all new dependencies are in pyproject.toml and uv.lock is updated
Code Style
- Use Python type hints for function parameters and return values
- Follow PEP 8 conventions for naming and formatting
- Use docstrings with Args/Returns/Raises sections in Google style
- Group imports: stdlib, third-party, local
- Error handling: Use specific exceptions from fastmcp.exceptions
- Class naming: PascalCase
- Function/variable naming: snake_case
- Use Pydantic models for data validation
- Validate input parameters and handle exceptions with appropriate error codes
- Tests should use pytest fixtures and mocks for external services
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.
- 9d ago First seen · 188 lines · 1,707 tokens per session scan A d1273f7b3a4d
mvn-mcp-server CLAUDE.md is an instructions file published in the GitHub repository danielscholl/mvn-mcp-server (0 stars, last pushed 8mo ago), licensed MIT. It adds 1,707 tokens to every session, about $0.0085 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.
deepseek-harness AGENTS.md
AGENTS.md instructions for deepseek-ai/deepseek-harness, covering agents.md, pre-stable apis and released session data, repository layout, commands and host sandbox failures.