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.
npx agentmods add instructions/call518/mcp-ambari-api/claude-mdgit clone --depth 1 https://github.com/call518/MCP-Ambari-APIWrote 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/call518/mcp-ambari-api/claude-md)<a href="https://agentmods.dev/instructions/call518/mcp-ambari-api/claude-md"><img src="https://agentmods.dev/badge/instructions/call518/mcp-ambari-api/claude-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.00987 | $0.00987 |
| Opus 5 | $0.00494 | $0.00494 |
| Sonnet 5 | $0.00197 | $0.00197 |
| Haiku 4.5 | $0.00099 | $0.00099 |
Grade A, and why
MCP-Ambari-API 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.
How it starts
The opening of the file, as written. The whole thing — 93 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
MCP Ambari API is a Model Context Protocol (MCP) server that bridges AI/LLM agents to Apache Ambari's REST API, enabling natural-language Hadoop cluster management. Built with FastMCP and aiohttp.
Development Commands
# Install dependencies (always use uv, never pip)
uv sync
# Run locally (stdio mode, for MCP Inspector)
PYTHONPATH=./src uv run python -m mcp_ambari_api
# Run locally (streamable-http mode)
PYTHONPATH=./src uv run python -m mcp_ambari_api --type streamable-http --host 0.0.0.0 --port 8000
# Run with .env config
source .env && PYTHONPATH=./src uv run python -m mcp_ambari_api --type ${FASTMCP_TYPE} --host ${FASTMCP_HOST} --port ${FASTMCP_PORT}
# MCP Inspector (interactive dev testing)
./run-mcp-inspector-local.sh
# Pre-commit (gitleaks secret scanning)
uv run pre-commit run --all-files
# Docker full stack (MCP server + MCPO proxy + OpenWebUI)
docker-compose up -d
# Build Docker images
./build-mcp-server-docker-image.sh
./build-mcpo-server-docker-image.sh
No tests or linting tools are currently configured.
Architecture
Two-module core design
src/mcp_ambari_api/mcp_main.py(~3400 lines) — MCP tool/resource registration layer. Creates theFastMCPinstance, decorates async functions with@mcp.tool()and@mcp.resource(), handles CLI argument parsing and server startup.src/mcp_ambari_api/functions.py(~1700 lines) — Business logic layer. HTTP request helpers (make_ambari_request,make_ambari_metrics_request), formatting utilities, metrics parsing/caching, and time-range resolution.
Transport modes
- stdio — Direct pipe with LLM clients (Claude Desktop, MCP Inspector). Default for local use.
- streamable-http — HTTP server exposing
/mcpendpoint. Used for Docker deployment with MCPO proxy.
Docker stack flow
OpenWebUI (port 3001) → MCPO Proxy (port 8001) → MCP Server (port 18001) → Ambari REST API
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.
- 5d ago First seen · 93 lines · 987 tokens per session scan A ab75aa81f603
MCP-Ambari-API CLAUDE.md is an instructions file published in the GitHub repository call518/MCP-Ambari-API (1 stars, last pushed 1mo ago), licensed MIT. It adds 987 tokens to every session, about $0.0049 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
iotdb CLAUDE.md
Claude Code instructions for apache/iotdb, covering claude.md, project overview, build commands, full build (skip tests) and build a specific module (e.g., datanode).
hunter-community CLAUDE.md
Claude Code instructions for agentpit-io/hunter-community, covering claude.md — hunter-community, 铁律:严禁 mock 兜底 · 空的比假的好, 严禁的模式, why and 落地方法.
grok-keysmith AGENTS.md
AGENTS.md instructions for Jia-Ethan/grok-keysmith, covering repository agent guide, scope, release and external state, change boundaries and documentation rules.
hier_config AGENTS.md
AGENTS.md instructions for netdevops/hier_config, covering hierconfig — agent & contributor guide, project overview, build & test commands, full lint + test suite (what ci runs) and tests only (95% coverage required).
branchbox CLAUDE.md
Claude Code instructions for branchbox/branchbox, covering claude.md, architecture deep dive, core library architecture (core/src/), cli architecture (cli/src/) and key design patterns.
defang CLAUDE.md
Claude Code instructions for DefangLabs/defang, a project described as: Defang CLI. Develop Once, Deploy Anywhere. Take your app from Docker Compose to a secure and scalable deployment on your favorite cloud in minutes.