MCP-Ambari-API CLAUDE.md

MCP-Ambari-API CLAUDE.md is an instructions file for Claude Code from call518/MCP-Ambari-API. It costs 987 tokens per session, scanned A, original, MIT.

A set of Claude Code instructions for developing and running the MCP Ambari API repository. It documents the project, commands, dependency installation with uv, local server modes, Docker setup, and available checks.

In plain words
What is it for?
Installing dependencies, running the MCP server locally, using the MCP Inspector, starting the Docker stack, building images, and running pre-commit checks.
Why use it?
It gives Claude Code consistent project-specific guidance so setup and development commands follow the repository’s expectations.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; mentions Claude Code.

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/call518/mcp-ambari-api/claude-md
Clone the repo
git clone --depth 1 https://github.com/call518/MCP-Ambari-API

Made for: Claude Code.

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 MCP-Ambari-API CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/call518/mcp-ambari-api/claude-md.svg)](https://agentmods.dev/instructions/call518/mcp-ambari-api/claude-md)
Your own site
<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>
Per session 987 This file is loaded in full into every session.
When invoked 987 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.1 $0.00987 $0.00987
Opus 5 $0.00494 $0.00494
Sonnet 5 $0.00197 $0.00197
Haiku 4.5 $0.00099 $0.00099

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

Security

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.

CLAUDE.md · 93 lines

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 the FastMCP instance, 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 /mcp endpoint. Used for Docker deployment with MCPO proxy.

Docker stack flow

OpenWebUI (port 3001) → MCPO Proxy (port 8001) → MCP Server (port 18001) → Ambari REST API

Read the full file on GitHub · 93 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 · 93 lines · 987 tokens per session scan A ab75aa81f603

Subscribe to this mod's changes

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.

Related

Other instructions, from other repositories