redfox-mcp-server
Provides tools for Bilibili including keyword search, account discovery, portfolio search, comment retrieval, and video downloads.
Provides tools for Kuaishou including keyword search, account search, account works, comment retrieval, and video extraction.
Provides a TikTok video downloader tool.
Provides tools for WeChat Official Accounts (公众号) including search, writing, cover/title generation, account analysis, and video downloads.
Provides tools for Xiaohongshu (Little Red Book) including search, writing, title scoring, cover generation, note analysis, account analysis, and video downloads.
Provides tools for YouTube including video summarization, comment retrieval, and video downloads.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@redfox-mcp-serverFind the top trending videos on Douyin right now"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
RedFox MCP Server
Wraps the 115 Agent Skills from the redfox-community repository into a single MCP server (Option 2: all tools available in one deployment).
91 tools directly callable (integrated with the real RedFox API)
Zero dependencies: pure native Node.js implementation (built-in fetch), no npm install, no Python required
Protocol: MCP (Model Context Protocol) over stdio, compatible with Qoder / Claude / Cursor and other clients
{
"mcpServers": {
"redfox-mcp-server": {
"command": "npx",
"args": ["-y", "redfox-mcp-server@latest"],
"env": { "REDFOX_API_KEY": "your-api-key-here" }
}
}
}Deploy to ModelScope MCP Plaza (Hosted Deployment)
ModelScope MCP Plaza supports hosted deployment of this server as a cloud MCP service, providing a dedicated Remote URL (SSE / Streamable HTTP) externally, so users can connect remotely without running it locally.
1. Publish the npm package (first time only)
cd redfox-mcp
npm login # 需要 npm 账号
npm publish # 包名 redfox-mcp-server,零依赖,37KB2. Create the service on ModelScope
Go to the creation page (or quickly create from a GitHub repository) and fill in:
Field | Value |
English name | redfox-mcp-server |
Hosting type | Hostable deployment |
Service config | Fill in the server config in |
Environment variable |
|
README | Feature description + usage instructions (this file can be used directly) |
The platform deployment check runs npx -y redfox-mcp-server@latest and calls tools/list (it has been verified that 91 tools are returned without an API Key, so the check passes smoothly).
3. User usage
On the service details page, users fill in their own REDFOX_API_KEY → click "Connect" → get a dedicated Remote URL:
https://mcp-<uuid>.api-inference.modelscope.cn/ssePaste it into any MCP client (Qoder / Dify / Tongyi Lingma, etc.) to remotely use all 91 tools.
Free deployment limits: up to 20 deployed services per user, 1 instance per service, ≤500 requests per 5-second window across all free services, and ≤50,000 requests total per user.
Related MCP server: rednote-analyzer-mcp
Quick Start
1. Get an API Key
Go to RedFox Hub to get your REDFOX_API_KEY.
2. Start the server
# Windows PowerShell
$env:REDFOX_API_KEY = "ak_xxxx..."
node server.js3. Configure in a client
Qoder: Add this server in the MCP configuration (use the npx method after publishing, or the node method for local development):
npx method (recommended, requires the npm package to be published):
{ "mcpServers": { "redfox-mcp-server": { "command": "npx", "args": ["-y", "redfox-mcp-server@latest"], "env": { "REDFOX_API_KEY": "ak_xxxx..." } } } }Local development method:
{ "mcpServers": { "redfox-mcp": { "command": "node", "args": ["E:\\path\\to\\redfox-mcp\\server.js"], "env": { "REDFOX_API_KEY": "ak_xxxx..." } } } }
The Qoder registration files (SERVER_METADATA.json + tools/*.json) are located in qoder-register/ and are automatically generated by gen-qoder-register.js.
Claude Desktop / Cursor: claude mcp add redfox-mcp -- node <path>/server.js
Tool List
Platform | Tools |
Douyin | douyin-search, douyin-hot-trend, douyin-daily-hot, douyin-content-surge, douyin-weekly-surge, douyin-rise-ranking, douyin-top-account, douyin-similar-account, douyin-account-diagnosis, douyin-ai-feed, douyin-prohibited-word, douyin-subscribe |
Xiaohongshu | xiaohongshu-search, xiaohongshu-write, xiaohongshu-title, xiaohongshu-title-score, xiaohongshu-cover, xiaohongshu-note-analyzer, xiaohongshu-dailytop, xiaohongshu-weeklytop, xiaohongshu-top-account, xiaohongshu-account-analyzer, xiaohongshu-similar-account, xiaohongshu-crawler, xiaohongshu-ai-feed, xiaohongshu-prohibited-word, xiaohongshu-rewrite, xiaohongshu-video-downloader |
WeChat Official Account | wechat-10w-hot, wechat-original-hot, wechat-search, wechat-write, wechat-cover, wechat-title, wechat-top-account, wechat-fastest-growing, wechat-similar-account, wechat-account-analyzer, wechat-prohibited-word, wechat-rewrite, wechat-video-downloader, gzh-astock-top |
Bilibili | bilibili-keywords-search, bilibili-keywords-accounts, bilibili-portfolio-search, bilibili-comment, bilibili-search-download, bilibili-video-downloader |
Kuaishou | kuaishou-search, kuaishou-accounts, kuaishou-account-works, kuaishou-comment, kuaishou-video-extract |
weibo-hot-search, weibo-realtime-search, weibo-post-search, weibo-comment-search | |
YouTube/X | youtube-digest, youtube-comment, youtube-video-downloader, twitter-comment, twitter-video-downloader |
TikTok | tiktok-video-downloader |
Multi-platform | cn-last30days, stock-feed, stock-analysis, multi-content-feed, trending-hub, trending-hub-top10, playlet--feed, cultural-tourism--feed |
AI Search | deepseek-websearch, doubao-websearch, kimi-websearch |
AI Generation | seedance-video-gen (video), visual-ops-writer (image), video-prompt-expert |
Tools | Prohibited-word detection (4 platforms), video download (8 platforms), multi-wordcheck |
Architecture
redfox-mcp/
├── server.js # MCP stdio 服务器入口(JSON-RPC 2.0)
├── tools-manifest.json # 自动提取的工具清单(从仓库脚本提取 API 端点/参数)
├── src/
│ ├── redfox-client.js # RedFox API 统一客户端(双请求头、错误处理、任务轮询)
│ ├── build-tools.js # 工具构建器(合并 manifest + overrides)
│ └── overrides.js # 人工校正层(精确参数映射、异步任务定义)
└── qoder-register/ # Qoder 注册文件(SERVER_METADATA.json + tools/*.json)Data Flow
MCP 客户端 ──JSON-RPC/stdio──> server.js ──> build-tools.js 工具注册表
│
▼
redfox-client.js(X-API-KEY 双发)
│
▼
https://redfox.hk/story/api/...Tool Parameter Design
Parameter names match the RedFox API payload fields (camelCase:
startDate/pageNum/pageSize)The
sourcefield is automatically filled in by the server asRedFoxMCP; callers do not need to pass itAsynchronous task tools (video generation / video-to-copy / comment retrieval) automatically submit + poll and return the final result directly
Regenerate the Tool List
After updating the repository scripts, re-extract the API information:
node mcp-extract-manifest.js "E:\path\to\redfox-community"
copy tools-manifest.json redfox-mcp\tools-manifest.json
node gen-qoder-register.js # 重新生成 Qoder 注册文件Tools Not Integrated (24)
The following Skills have no API endpoints (pure AI analysis / prompt-based) and are not registered as tools:
ai-intelligence-investigator, image-gen, redfox-skill-generator, redfox-subscribe, multi-copywrite-alchemy, pdf-image-text-extractor, seedream-5-lite, gzh-search, gzh-subscribe, video-downloader, douyin-works-crawler, tiktok-home-downloader, geo-analyzer, global-ai-news-brief, overseas-trending-search, wechat-account-analyzer, weibo-video-downloader, twitter-work-search, xiaohongshu-lowtop, etc.
To integrate them, add the corresponding endpoints in src/overrides.js and regenerate.
FAQ
Q: Tool calls return [NO_API_KEY]?
A: The REDFOX_API_KEY environment variable is not set. Please configure it before starting.
Q: Returns [BIZ_ERROR]?
A: The API Key is invalid or has insufficient permissions. Check the Key status on RedFox Hub.
Q: How to test?
node mcp-test-client.js list # 列出工具
node mcp-test-client.js call douyin-search test-args.json # 调用工具(参数从 JSON 文件读)This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server: AI-agent access to Chinese social & trend signals — Douyin, Weibo, Xiaohongshu/RedNote,
Hosted MCP with 91 agent tools: X, domains, SEO, Maps, Trends, Search, YouTube, TikTok, and more.
Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.
Remote MCP server for supportsheep: run AI interviews and manage support content for your blog.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMCP server for automating Xiaohongshu (RED Note). Publish posts, search content, comment, like, and analyze creator data on China's largest lifestyle social platform.24MIT
- AlicenseAqualityDmaintenanceMCP server enabling AI assistants to search, analyze, and generate content for Xiaohongshu (RedNote), China's leading lifestyle social media platform.69MIT
- AlicenseNot gradedqualityDmaintenanceEnables automation of Xiaohongshu (Little Red Book) operations including content publishing, searching, and interacting, with MCP protocol support for AI agent integration.1MIT
- FlicenseNot gradedqualityBmaintenanceMCP server enabling AI agents to generate AI videos and images, analyze video content, and download videos from Douyin and Xiaohongshu.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/if530770/redfox-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server