
OMDb Movies MCP By UnClick
- 4 repo stars
- malamutemayhem/unclick
OMDb Movies MCP by UnClick is an MCP server that lets your agent query OMDb and IMDb-oriented movie metadata over MCP.
About
OMDb Movies MCP by UnClick connects your coding agent to movie metadata workflows aligned with OMDb and IMDb-style lookups. developers creating letterboxd-like lists, affiliate review blogs, streaming companion apps, or internal media databases usually need posters, plots, years, and ratings from a stable API; doing that with ad-hoc fetch calls breaks agent focus and duplicates error handling. This MCP server centralizes those calls behind tools the model can invoke while you implement UI and business logic. The catalog positions it explicitly around movies, OMDb, and IMDb identifiers—plan on an OMDb API key for real usage even though the short description does not repeat “no API key” like some sibling UnClick servers. Stdio plus npx matches the other UnClick standalone integrations, so configuration mirrors MusicBrainz or NASA MCP entries. It does not replace licensing for artwork or full box-office feeds; it accelerates agent-assisted development of movie-centric features. Skillselion lists it on Build → Integrations for media and content developers.
- OMDb-oriented movie tools covering movies, OMDb, and IMDb-style metadata
- Packaged as @unclick/omdb-mcp with stdio MCP transport
- Version 0.1.0 using MCP server schema 2025-12-11
- UnClick standalone package from the unclick GitHub monorepo
- Fits content and media side projects driven from Claude Code or Cursor
OMDb Movies MCP By UnClick by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add omdb -- npx -y @unclick/omdb-mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 4 |
|---|---|
| Package | @unclick/omdb-mcp |
| Transport | STDIO |
| Auth | None |
| Repository | malamutemayhem/unclick ↗ |
What it does
Hook OMDb and IMDb-style movie metadata into your agent while you build watchlists, review sites, or recommendation features without writing another REST client.
Who is it for?
Best when you're shipping movie lists, review content, or recommendation prototypes with agent help and OMDb-backed facts.
Skip if: Products needing studio-licensed assets, global box office terminals, or workflows that cannot use third-party movie APIs.
What you get
After configuration, your agent can pull movie records through MCP tools so your app code focuses on UX and business rules.
- Running OMDb MCP server wired into your agent
- Structured movie metadata for features and content generation
- Less bespoke HTTP code for title search and detail enrichment
By the numbers
- Published server version 0.1.0
- npm package @unclick/omdb-mcp with stdio transport
- GitHub source at packages/standalone/omdb-mcp in unclick repository
README.md
UnClick MCP server
The app store for AI agents. unclick.world
450+ callable endpoints across 178+ tools, available to any MCP-compatible AI client. New tools ship to the API continuously. Your agent picks them up automatically; no package update is needed.
Install
Using the latest GitHub release (no npm account required):
{
"mcpServers": {
"unclick": {
"command": "npx",
"args": ["-y", "https://github.com/malamutemayhem/unclick/releases/latest/download/unclick.tgz"]
}
}
}
Add this to your claude_desktop_config.json (or equivalent for Cursor, Windsurf, etc).
Or install globally from GitHub:
npm install -g https://github.com/malamutemayhem/unclick/releases/latest/download/unclick.tgz
Operational Notes
This repo follows the AGENTS.md fence rules for agent work.
Run
For local web development:
npm run dev
For the API workspace:
npm run dev:api
Test
Run the main test suite:
npm test
Run the production build check:
npm run build
License
UnClick uses a split license. The platform (website, API, and hosted backend
and memory services) is AGPL-3.0 (see LICENSE). The npm client
package @unclick/mcp-server stays MIT, and the standalone connector
packages stay Apache-2.0. Full breakdown and reasoning in
LICENSING.md.
What it does
Gives your agent access to a growing catalog of tools across developer utilities, social media, e-commerce, finance, messaging, media, security, and more. You don't need to install separate packages for each integration. One server provides access to everything in the catalog.
Tool Surface
UnClick exposes a small direct surface for daily agent workflows, plus hidden internal discovery tools for the full catalog.
| Tool group | Tools |
|---|---|
| Memory session protocol | load_memory, save_fact, search_memory, save_identity, save_session |
| Signals and Boardroom coordination | check_signals, read_messages, post_message, create_todo, list_todos, update_todo, complete_todo, create_idea, list_ideas, vote_on_idea, promote_idea_to_todo |
| Hidden internal catalog tools | unclick_search, unclick_browse, unclick_tool_info, unclick_call |
The agent starts with memory, uses direct Boardroom tools for coordination, and can still call the hidden catalog tools by name when it needs dynamic endpoint discovery.
Compatibility and advanced memory operations
- Legacy memory names still work as aliases:
get_startup_context->load_memory,write_session_summary->save_session,add_fact->save_fact,set_business_context->save_identity. - The remaining memory operations are intentionally not listed in
ListToolsand are called throughunclick_callwithendpoint_id: "memory.<op>"(for examplememory.manage_decay,memory.store_code,memory.log_conversation,memory.supersede_fact,memory.upsert_library_doc).
Requirements
- Node.js 18+
- An API key from unclick.world
Set your key as an environment variable:
UNCLICK_API_KEY=your_key_here
Or pass it via the MCP config:
{
"mcpServers": {
"unclick": {
"command": "npx",
"args": ["-y", "https://github.com/malamutemayhem/unclick/releases/latest/download/unclick.tgz"],
"env": {
"UNCLICK_API_KEY": "your_key_here"
}
}
}
}
More
Full catalog, docs, and API keys at unclick.world.
Recommended MCP Servers
How it compares
MCP integration for OMDb-style movie lookups, not a full streaming platform or agent skill.
FAQ
Who is OMDb Movies MCP By UnClick for?
Developers using MCP agents who build movie-centric apps and want OMDb/IMDb-style metadata without maintaining custom API clients.
When should I use OMDb Movies MCP By UnClick?
Use it during build when implementing search, detail pages, or enrichment pipelines that need structured movie data from OMDb.
How do I add OMDb Movies MCP By UnClick to my agent?
Install @unclick/omdb-mcp with npx, configure the stdio MCP server in your agent client, and set your OMDb API key per the package documentation.