tmdb-mcp: Skill for Claude Code

.agents/skills/prompt-check/SKILL.md

prompt-check is a skill for Claude Code, Codex from Grinv/tmdb-mcp. It costs 58 tokens per session (419 once invoked), scanned A, original, MIT.

A live testing procedure for checking every MCP prompt, which is a reusable request exposed through the Model Context Protocol, using the real protocol.

In plain words
What is it for?
Use it after adding or changing prompts, testing no arguments, each optional argument alone, all arguments together, and every allowed value.
Why use it?
It catches argument-handling bugs that a static code review may miss, including failures with optional filters or different allowed values.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is Grinv/tmdb-mcp's own configuration. It tells Claude Code and Codex how to work on tmdb-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything tmdb-mcp configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is npx @modelcontextprotocol/inspector --cli node dist/index.js --method prompts/list.

Reuse

Borrowing it

Nothing to install: this file belongs to Grinv/tmdb-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.

Copy the file
curl -O https://raw.githubusercontent.com/Grinv/tmdb-mcp/main/.agents/skills/prompt-check/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Grinv/tmdb-mcp

Made for: Claude Code, Codex.

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 prompt-check

README.md
[![agentmods](https://agentmods.dev/badge/skills/grinv/tmdb-mcp/prompt-check/github.svg)](https://agentmods.dev/skills/grinv/tmdb-mcp/prompt-check)
Your own site
<a href="https://agentmods.dev/skills/grinv/tmdb-mcp/prompt-check"><img src="https://agentmods.dev/badge/skills/grinv/tmdb-mcp/prompt-check/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.

agentmods 80×15 button for prompt-check

Your own site · 80×15
<a href="https://agentmods.dev/skills/grinv/tmdb-mcp/prompt-check"><img src="https://agentmods.dev/badge/skills/grinv/tmdb-mcp/prompt-check.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 419 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00058 $0.00419
Opus 5 $0.00029 $0.00210
Sonnet 5 $0.00012 $0.00084
Haiku 4.5 $0.00006 $0.00042

Measured 9d ago against content hash 8eebe57c69b5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

prompt-check 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.

.agents/skills/prompt-check/SKILL.md · 35 lines

What it actually says

Prompt check — live-test every MCP Prompt argument combination

A static read comparing prompt text against tool names/params misses argument-handling bugs (found this way in a sibling repo: a prompt silently dropped one of two independent optional filters whenever it was given without the other, because its branching logic wrongly required both together). Actually render every prompt through the real MCP protocol:

npx @modelcontextprotocol/inspector --cli node dist/index.js --method prompts/list
npx @modelcontextprotocol/inspector --cli node dist/index.js --method prompts/get \
  --prompt-name <name> --prompt-args key=value key2=value2

--prompt-args takes space-separated key=value pairs, not a JSON blob — the CLI rejects JSON with "Invalid parameter format".

For each prompt: no args, only one optional arg at a time, and all of them together — an arg that's individually optional can still break when given alone.

For an enum-valued arg (e.g. media_type: "movie" | "tv"), render every value, not just one — each can take a genuinely different branch in the prompt's own step-building logic. Missing this exact gap is how a real bug got past a prior live-audit pass in this repo: media_type=movie rendered fine, but media_type=tv left a dangling reference to a step ("the equivalent movies filter") that only exists in the movies branch — caught later by a /code-review pass, not by live-audit, because only one enum value had actually been rendered here.

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. 9d ago First seen · 35 lines · 58 tokens per session scan A 8eebe57c69b5

Subscribe to this mod's changes

prompt-check is a skill published in the GitHub repository Grinv/tmdb-mcp (4 stars, last pushed 15d ago), licensed MIT. It adds 58 tokens to every session and 419 once invoked, about $0.0003 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 skills, from other repositories

live-audit

Audit steam-games-mcp — build/test/lint gate, live MCP tool edge-case sweep (input validation, SteamID64/vanity/appid edge cases, key-gating), and source-level code review. Use when asked to test/audit the published or just-fixed steam-games-mcp package, hunt for bugs/edge cases, or repeat "the same kind of testing as…

Grinv/steam-games-mcp · 83 tokens

prompt-check

Live-test every MCP Prompt in src/tools/prompts.ts through the real MCP protocol (not a static read) across every argument combination. Use when a prompt is added or its argument-handling logic changes, or as part of a live-audit pass.

Grinv/steam-games-mcp · 54 tokens

tool-description-check

Self-check a new or edited MCP tool description/field .describe() text before committing — verify every behavioral claim against live testing or source, check for contradictions with sibling tools, and score against Glama's Tool Definition Quality Score (TDQS) rubric. Use whenever a tool description or schema field…

Grinv/steam-games-mcp · 76 tokens

release

Cut a release of steam-games-mcp — draft CHANGELOG entries, check docs/metadata consistency, then bump/tag/push. Use when asked to release, cut a version, or publish a new version of this package.

Grinv/steam-games-mcp · 47 tokens

docs-consistency-check

Check README/manifest.json/server.json/CHANGELOG.md/AGENTS.md and docs/.md for drift against the actual registered tools and source. Use after adding, renaming, or removing a tool, or as part of a live-audit pass.

Grinv/steam-games-mcp · 56 tokens

verify-cli

Run smoke tests against the mpak CLI to verify all commands work correctly before publishing a new release.

NimbleBrainInc/mpak · 23 tokens