IMDB146

by BACH-AI-Tools

MCP Client
  • other

Imdb146 MCP 服务器可帮助您轻松获取电影、视频及相关信息。

About

What is IMDB146?

IMDB146 is an MCP server that provides access to the IMDB146 API. It runs on the stdio transport protocol and is available as a Python package (bach-imdb146). The server is intended for developers and AI assistants that need to query IMDB data through the Model Context Protocol.

How to use IMDB146?

Install via pip (pip install bach-imdb146) or run with uvx --from bach-imdb146 bach_imdb146 (recommended). Set the API_KEY environment variable with your IMDB146 API key. Configuration files for Cursor (~/.cursor/mcp.json) and Claude Desktop (claude_desktop_config.json) are provided. The server can also be used through the EMCP platform for zero‑configuration management.

Key features of IMDB146

- Offers tools for name details, title details, search, news, and video data
- Runs via uvx with automatic dependency resolution
- Integrates with Cursor, Claude Desktop, and the EMCP platform
- MIT licensed – open source
- Developed from the API-to-MCP tool

Use cases of IMDB146

- Query IMDB title details by ID
- Retrieve name/actor information from IMDB
- Search IMDB for movies, shows, or people
- Fetch latest IMDB news articles
- Get video metadata from IMDB

FAQ from IMDB146

What does IMDB146 do?

IMDB146 is an MCP server that exposes IMDB146 API endpoints as tools (name details, title details, find, news details, video details) for use by MCP‑compatible clients like Cursor and Claude Desktop.

Which platforms or editors support IMDB146?

IMDB146 works with any MCP client. Explicit configuration examples are provided for Cursor and Claude Desktop. It can also be managed through the EMCP platform.

Does IMDB146 require an API key?

Yes. The API_KEY environment variable must be set to authenticate requests to the IMDB146 API. No default key is provided.

What is the licensing of IMDB146?

IMDB146 is released under the MIT License, as stated in the included LICENSE file.

Are there any known limits or restrictions?

The README does not specify rate limits or pricing. The server requires an API key, implying the underlying IMDB146 API may have its own access restrictions.

Details

Author
BACH-AI-Tools
Category
other
Repository
bach-ai-tools/imdb146

Imdb146 MCP Server

English | 简体中文 | 繁體中文

用于访问 Imdb146 API 的 MCP 服务器。

🚀 使用 EMCP 平台快速体验

EMCP 是一个强大的 MCP 服务器管理平台,让您无需手动配置即可快速使用各种 MCP 服务器!

快速开始:

1. 🌐 访问 EMCP 平台
2. 📝 注册并登录账号
3. 🎯 进入 MCP 广场,浏览所有可用的 MCP 服务器
4. 🔍 搜索或找到本服务器(bach-imdb146
5. 🎉 点击 "安装 MCP" 按钮
6. ✅ 完成!即可在您的应用中使用

EMCP 平台优势:

- ✨ 零配置:无需手动编辑配置文件
- 🎨 可视化管理:图形界面轻松管理所有 MCP 服务器
- 🔐 安全可靠:统一管理 API 密钥和认证信息
- 🚀 一键安装:MCP 广场提供丰富的服务器选择
- 📊 使用统计:实时查看服务调用情况

立即访问 EMCP 平台 开始您的 MCP 之旅!

---

简介

这是一个 MCP 服务器,用于访问 Imdb146 API。

- PyPI 包名: bach-imdb146
- 版本: 1.0.0
- 传输协议: stdio

安装

从 PyPI 安装:

pip install bach-imdb146

从源码安装:

pip install -e .

运行

方式 1: 使用 uvx(推荐,无需安装)

# 运行(uvx 会自动安装并运行)
uvx --from bach-imdb146 bach_imdb146

或指定版本

uvx --from bach-imdb146@latest bach_imdb146

方式 2: 直接运行(开发模式)

python server.py

方式 3: 安装后作为命令运行

# 安装
pip install bach-imdb146

运行(命令名使用下划线)

bach_imdb146

配置

API 认证

此 API 需要认证。请设置环境变量:

export API_KEY="your_api_key_here"

环境变量

| 变量名 | 说明 | 必需 |
|--------|------|------|
| API_KEY | API 密钥 | 是 |
| PORT | 不适用 | 否 |
| HOST | 不适用 | 否 |

在 Cursor 中使用

编辑 Cursor MCP 配置文件 ~/.cursor/mcp.json:

{
  "mcpServers": {
    "bach-imdb146": {
      "command": "uvx",
      "args": ["--from", "bach-imdb146", "bach_imdb146"],
      "env": {
        "API_KEY": "your_api_key_here"
      }
    }
  }
}

在 Claude Desktop 中使用

编辑 Claude Desktop 配置文件 claude_desktop_config.json:

{
  "mcpServers": {
    "bach-imdb146": {
      "command": "uvx",
      "args": ["--from", "bach-imdb146", "bach_imdb146"],
      "env": {
        "API_KEY": "your_api_key_here"
      }
    }
  }
}

可用工具

此服务器提供以下工具:

name_details

Name Details

端点: GET /v1/name/

参数:

- id (string) 必需: Name ID

---

title_details

Title Details

端点: GET /v1/title/

参数:

- id (string) 必需: Title ID

---

find

Find (Search)

端点: GET /v1/find/

参数:

- query (string) 必需: Search query

---

news_details

News Details

端点: GET /v1/news/

参数:

- id (string) 必需: News ID

---

video_details

Video Details

端点: GET /v1/video/

参数:

- id (string) 必需: Video ID

---

技术栈

- 传输协议: stdio
- HTTP 客户端: httpx

许可证

MIT License - 详见 LICENSE 文件。

开发

此服务器由 API-to-MCP 工具生成。

版本: 1.0.0