{
"mcpServers": {
"mcp-nullbr-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
用于搜索影视资源的mcp,使用的是nullbr的api
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 77 days ago. 21 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Nullbr Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
NullBR API的题目搜索API现已兼容MCP协议,可以让任意支持MCP协议的智能体助手(如Claude、Cursor、Cherry Studio等)快速接入NullBR API,搜索和获取影视资源信息,并可以转存入CMS中。
本项目依赖 MCP Java SDK 开发,基于 Spring AI 框架实现。
采用 SSE (服务器发送事件) 协议,支持流式响应。
本项目提供了丰富的影视资源查询与管理工具:
searchMedia): 搜索电影、电视剧、人物或合集。
query (关键词), page (页码, 可选)getList): 获取特定列表详情。
listId, pagegetMovieInfo): 获取电影详细元数据。
tmdbIdgetTVInfo): 获取电视剧详细元数据。
tmdbIdgetTVSeasonInfo): 获取特定季度的详情。
tmdbId, seasonNumbergetTVEpisodeInfo): 获取特定集数的详情。
tmdbId, seasonNumber, episodeNumbergetPersonInfo): 获取演职人员详情。
tmdbId, pagegetCollectionInfo): 获取系列电影合集详情。
tmdbIdgetMovieResources): 获取电影的下载/播放资源。
tmdbId, resourceType (115/magnet/ed2k/video)getTVResources): 获取电视剧网盘资源。
tmdbIdgetTVSeasonResources): 获取特定季度的资源。
tmdbId, seasonNumber, resourceTypegetTVEpisodeResources): 获取特定集数的资源。
tmdbId, seasonNumber, episodeNumber, resourceTypegetPersonResources): 获取人物相关的网盘资源。
tmdbIdgetCollectionResources): 获取电影合集的网盘资源。
tmdbIdaddShareDown): 将获取的115分享链接添加到CMS系统进行转存。
urlgit clone https://github.com/yourusername/mcp-nullbr-server
cd mcp-nullbr-server
在运行之前,您需要配置 src/main/resources/application.yml 文件,填入您的 API 密钥和 CMS 配置:
nullbr:
api:
base-url: https://api.nullbr.eu.org
app-id: 您的APP_ID
api-key: 您的API_KEY
cms:
base-url: 您的CMS地址
username: 您的CMS账号
password: 您的CMS密码
mvn clean package
使用以下命令启动 SSE 服务(默认端口 8080):
java -jar target/mcp-nullbr-server-0.0.1-SNAPSHOT.jar
http://localhost:8080/sse (如果部署在远程,请修改 IP)MIT