Borrowing it
Nothing to install: this file belongs to conorbronsdon/podcastindex-mcp. 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/conorbronsdon/podcastindex-mcp/main/CLAUDE.mdgit clone --depth 1 https://github.com/conorbronsdon/podcastindex-mcpWrote 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/conorbronsdon/podcastindex-mcp/claude-md)<a href="https://agentmods.dev/instructions/conorbronsdon/podcastindex-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/conorbronsdon/podcastindex-mcp/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/conorbronsdon/podcastindex-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/conorbronsdon/podcastindex-mcp/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.00452 | $0.00452 |
| Opus 5 | $0.00226 | $0.00226 |
| Sonnet 5 | $0.00090 | $0.00090 |
| Haiku 4.5 | $0.00045 | $0.00045 |
Grade A, and why
podcastindex-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 10d 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.
What it actually says
podcastindex-mcp
MCP server for the Podcast Index API — search podcasts, track appearances, monitor trending, check feed health.
Architecture
src/index.ts— MCP server bootstrap, env var validation, request handlerssrc/api-client.ts— HTTP client with HMAC SHA1 auth header generationsrc/tool-handlers.ts— 8 tool handlers with input validation and error handlingsrc/types.ts— TypeScript interfaces and type guard functions for all tool argssrc/__tests__/— Vitest tests for types, API client, and tool handlers
Key constraints
PODCASTINDEX_API_KEYandPODCASTINDEX_API_SECRETenv vars are needed for tool calls, but the server starts without them (lazy auth): warns on stderr, answerstools/list, and fails eachtools/callwith a clear McpError until both are set- Tests must mock HTTP — never hit the real Podcast Index API
- Uses MCP SDK 1.x and axios for HTTP; all 8 tools are read-only and declare
annotations: { readOnlyHint: true }(enforced by a completeness test) - CI runs
npm audit --audit-level=high— keep dependencies free of high-severity advisories
Development
npm ci
npm run lint # tsc --noEmit (type-check)
npm run build # tsc (outputs to build/)
npm test # vitest run
Testing
3 test suites:
types.test.ts— Type guard validation (valid/invalid inputs for all 8 arg types)api-client.test.ts— API endpoints, param forwarding, auth header generation (mocked axios)tool-handlers.test.ts— Tool dispatch, error handling, TOOLS registry integrity
Agent workflow
- Always work on a branch. Never push directly to main.
- Create PRs targeting main. CI must pass (lint + build + test on Node 20 and 22).
- Keep changes focused — one feature or fix per PR.
- Run
npm testlocally before pushing.
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.
- 10d ago First seen · 37 lines · 452 tokens per session scan A ef77973d6cfb
podcastindex-mcp CLAUDE.md is an instructions file published in the GitHub repository conorbronsdon/podcastindex-mcp (1 stars, last pushed 4d ago), licensed MIT. It adds 452 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.
Other instructions, from other repositories
repobrain copilot-instructions.md
Copilot instructions for study8677/repobrain, covering github copilot bootstrap instructions and hard rule — query the repobrain hub first.
plugin-files-mode
Rosetta Plugin Mode Bootstrap.
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).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.