What is the Omdb MCP server?
OMDb MCP — IMDB-derived movie / TV / episode data (BYO key)
How to install Omdb
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"omdb": {
"url": "https://gateway.pipeworx.io/omdb/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"omdb": {
"serverUrl": "https://gateway.pipeworx.io/omdb/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"omdb": {
"type": "http",
"url": "https://gateway.pipeworx.io/omdb/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"omdb": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/omdb/mcp"
]
}
}
}Claude Code
claude mcp add --transport http omdb https://gateway.pipeworx.io/omdb/mcp