Foreword¶
DSH (DeepSeek Harness) organizes capabilities via plugins. If your goal is to handle social media data, call data APIs, or generate content within an agent session, you might want to check out the plugin package below.
Below is an introduction to redfox-data/redfox-community-dsh. It is the official RedFoxHub DSH plugin package, providing 100+ social media data skills and 40 native MCP tools, and supports installation via a single command.
What is this¶
redfox-data/redfox-community-dsh is maintained by redfox-data and is licensed under MIT. It is released in the official bundle skill-package format. After installation, skills appear directly in the session skill directory and support precise invocation via the /skill-name gesture.
This plugin package covers Douyin, Xiaohongshu, Kuaishou, Bilibili, WeChat Official Accounts, WeChat Channels, Weibo, Zhihu, Toutiao, as well as YouTube, TikTok, Instagram, X, and other platforms.
Core Features¶
Social Media Data Skills¶
The plugin provides 100+ social media data skills; the README also mentions 112 directly usable skills.
After installation, these skills appear in the session skill directory. You can describe your requirements in natural language, or the agent can match the appropriate skill.
MCP Tools¶
The plugin includes 40 native MCP tools, covering platform data APIs, AI search, and AI generation.
AI search supports Kimi, Doubao, and DeepSeek. AI generation supports tools like GPT image, Doubao image pro/lite, and Doubao video.
These tools register redfox-mcp as a stdio MCP server via a bundled MCP bridge, and the tool names are prefixed with mcp__redfox__*.
Installation and Enablement¶
First, execute the installation command to add the plugin to the web profile:
dsh plugin --profile web add github:redfox-data/redfox-community-dsh
After installation, the README requires restarting dsh web for changes to take effect. In package.json, dsh.marketplace.requiresRestart is true and dsh.marketplace.manualSteps is true, so do not skip the restart step after installation.
In package.json, dsh.marketplace.profiles is set to web and headless.
If you need to use MCP tools, two additional conditions are required:
-
Set
REDFOX_API_KEYin the DSH runtime environment. You can obtain it fromhttps://redfox.hk/settings/api-keys. -
MCP tools additionally require Python ≥ 3.10; the bridge starts
uvx redfox-mcpviauv.
When REDFOX_API_KEY is missing, the tool returns a structured message explaining how to obtain the key.
Typical Usage¶
After completing the steps above and restarting dsh web, you can directly describe your requirements to let the agent match the appropriate skill, for example:
- “find recent AI notes on Xiaohongshu”
- “analyze the comments on this Douyin video”
You can also use the /skill-name gesture for precise invocation, for example:
/douyin-search/xiaohongshu-write
To pull the latest version, you can re-run the installation command:
dsh plugin --profile web add github:redfox-data/redfox-community-dsh
If you need a specific version, you can install via a commit hash or a release tag.
Scenarios and Notes¶
Suitable for:
- Developers who need to use social media data skills in DSH sessions.
- People who need to call platform data APIs, AI search, or AI generation.
- People who want to install plugins under the
weborheadlessprofile.
Notes:
- This plugin registers MCP tools at runtime and executes relevant code with the current DSH process permissions. You should check the source code, license, and dependencies before installation.
- The license is MIT.
REDFOX_API_KEYis used for API calls; be careful to avoid leakage.- MCP tools depend on Python ≥ 3.10 and start
uvx redfox-mcpviauv. - The philosophy of DSH is “Everything is a plugin”; the community directory is an independent site with no official affiliation with DeepSeek / Fangfang.
Conclusion¶
The value of redfox-data/redfox-community-dsh lies in bundling RedFoxHub’s social media data skills and MCP tools into a DSH plugin: after installation, skills go directly into the session skill directory, and MCP tools are exposed as mcp__redfox__*, offering a relatively direct invocation path.
Directory page:
https://www.skillhub.cn/plugins/redfox-data/redfox-community-dsh
GitHub:
https://github.com/redfox-data/redfox-community-dsh