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 skills add ryanxili/tmdb-mcp --skill tmdb-mcpgit clone --depth 1 https://github.com/ryanxili/tmdb-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/skills/ryanxili/tmdb-mcp/tmdb-mcp)<a href="https://agentmods.dev/skills/ryanxili/tmdb-mcp/tmdb-mcp"><img src="https://agentmods.dev/badge/skills/ryanxili/tmdb-mcp/tmdb-mcp/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/skills/ryanxili/tmdb-mcp/tmdb-mcp"><img src="https://agentmods.dev/badge/skills/ryanxili/tmdb-mcp/tmdb-mcp.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.00052 | $0.03397 |
| Opus 5 | $0.00026 | $0.01699 |
| Sonnet 5 | $0.00010 | $0.00679 |
| Haiku 4.5 | $0.00005 | $0.00340 |
Grade A, and why
tmdb scanned grade A with 1 finding 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 11d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s "https://api.themoviedb.org/3/search/movie?api_key=$TMDB_API_KEY&language=zh-CN&query=流浪地球" How it starts
The opening of the file, as written. The whole thing — 407 lines — stays where its author put it; the contents beside it link to each section on GitHub.
TMDB API Skill
This skill enables AI agents to interact with The Movie Database (TMDB) API v3.
When to Use This Skill
Use this skill when users:
- Search for movies, TV shows, or actors
- Get trending, popular, or top-rated content
- View movie/TV details, cast, crew, similar movies
- Get recommendations or discover new content
API Configuration
- Base URL:
https://api.themoviedb.org/3 - Language:
zh-CN(Chinese Simplified) - Authentication: API Key via
api_keyquery parameter
API Key Handling
- First check for
TMDB_API_KEYenvironment variable usingecho $TMDB_API_KEY - If not found or empty, prompt user to enter API key manually using
readcommand - Store in a session variable for current session only (do not persist)
- Example session setup:
# Check if API key exists, if not prompt user
if [ -z "$TMDB_API_KEY" ]; then
read -p "请输入 TMDB API Key: " TMDB_API_KEY
export TMDB_API_KEY
fi
Available Endpoints
Search
| Endpoint | Description |
|---|---|
/search/movie |
Search movies by query |
/search/tv |
Search TV shows by query |
/search/person |
Search people by query |
/search/multi |
Search movies, TV shows, and people |
Trending
| Endpoint | Description |
|---|---|
/trending/{media_type}/day |
Trending today |
/trending/{media_type}/week |
Trending this week |
Movie
| Endpoint | Description |
|---|---|
/movie/popular |
Popular movies |
/movie/top_rated |
Top rated movies |
/movie/now_playing |
Now playing in theaters |
/movie/upcoming |
Upcoming movies |
/movie/{movie_id} |
Movie details |
/movie/{movie_id}/credits |
Cast and crew |
/movie/{movie_id}/similar |
Similar movies |
/movie/{movie_id}/recommendations |
Recommendations |
/movie/{movie_id}/videos |
Videos (trailers) |
TV
| Endpoint | Description |
|---|---|
/tv/popular |
Popular TV shows |
/tv/top_rated |
Top rated TV shows |
/tv/airing_today |
Airing today |
/tv/on_the_air |
Currently on air |
/tv/{tv_id} |
TV show details |
/tv/{tv_id}/credits |
Cast and crew |
/tv/{tv_id}/similar |
Similar shows |
/tv/{tv_id}/recommendations |
Recommendations |
/tv/{tv_id}/videos |
Videos |
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.
- 11d ago First seen · 407 lines · 52 tokens per session scan A e63c51c6ec8a
tmdb is a skill published in the GitHub repository ryanxili/tmdb-mcp (0 stars, last pushed 5mo ago), licensed MIT. It adds 52 tokens to every session and 3,397 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…