Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"zhongyao-mcp-server": {
"env": {
"ini": "F:\\work\\code\\AIcode\\zhongyao_mcp_server\\config.ini"
},
"args": [
"zhongyao-mcp-server"
],
"name": "中药AI视频生成服务",
"command": "uvx",
"description": "提供中药信息查询、文案、语音、视频生成及最终合成的服务。"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
zhongyao-mcp-server 是一个基于火山引擎豆包大模型API和MCP(Model Context Protocol)协议的AI工具服务器。它专注于中草药领域,提供了一系列强大的多模态内容生成工具。通过本服务器,用户可以轻松地在支持MCP的客户端(如 Trae, Cherry Studio)中,一键式地为指定的中草药生成包含详细信息、图片、语音解说和视频的完整短视频。
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'zhongyao-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked zhongyao-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in health / ai-ml
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
MCP Security Weekly
Get CVE alerts and security updates for Zhongyao Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
zhongyao-mcp-server 是一个基于火山引擎豆包大模型API和MCP(Model Context Protocol)协议的AI工具服务器。它专注于中草药领域,提供了一系列强大的多模态内容生成工具。通过本服务器,用户可以轻松地在支持MCP的客户端(如 Trae, Cherry Studio)中,一键式地为指定的中草药生成包含详细信息、图片、语音解说和视频的完整短视频。
项目的核心是将复杂的多步骤、多模态生成流程(包括资料查询、文案撰写、语音合成、视频生成、后期合成)封装成简单易用的工具,极大地简化了中草药科普内容的创作过程。
核心功能特性:
支持的AI模型:
doubao-seedream-3-0-t2i-250415doubao-seedance-1-0-lite-i2v-250428doubao-seedance-1-0-lite-t2v-250428Python >= 3.11
火山引擎豆包API密钥
这个MCP 依赖包我们使用uv 管理所以pyproject.toml
dependencies = [
"mcp[cli]>=1.9.4", # 添加requests依赖
"requests>=2.31.0",
"openai>=1.86.0",
"cos-python-sdk-v5==1.9.33",
"moviepy==1.0.3",
"httpx",
]
这代码配置文件我们使用config.ini 内容如下
# config.ini
[API]
api_key = YOUR_API_KEY_HERE
base_url = https://ark.cn-beijing.volces.com/api/v3
[Models]
# 语言模型
chat_model = deepseek-v3-250324
# 文生图模型
image_model = doubao-seedream-3-0-t2i-250415
# 文生视频模型
video_model = doubao-seedance-1-0-lite-t2v-250428
[edgetts]
tts_api_key =zhouhuizhou
tts_base_url=https://edgettsapi.duckcloud.fun/v1
[common]
cos_region = ap-nanjing # 腾讯云OSS存储Region
cos_secret_id = AKID003XXXXXXgO9qPl # 腾讯云OSS存储SecretId
cos_secret_key = IZhavCXXXXXXXXXXX6i9NXUFqGTUOFvS # 腾讯云OSS存储SecretKey
cos_bucket =tts-1258720957 # 腾讯云OSS存储bucket
# font_path = /usr/share/fonts/truetype/wqy/wqy-zenhei.ttc
# [Windows 用户配置]
imagemagick_binary = D:\develop\ImageMagick-7.1.1-Q16\magick.exe
font_path = SimHei
# [Linux 用户配置]
# imagemagick_binary = /home/ImageMagick/magick
# font_path = /usr/share/fonts/truetype/wqy/wqy-zenhei.ttc
需要修改的地方火山引擎的api_key 添加你自己的,腾讯云OSS存储。imagemagick_binary 换成你程序安装的目录
容器版本config.docker.ini 只需要修改火山引擎的api_key和腾讯云OSS存储,imagemagick 容器镜像默认安装(不需要考虑)
方式一:使用pip安装
pip install zhongyao-mcp-server
方式二:使用uvx安装
uvx zhongyao-mcp-server
方式三:使用docker安装(推荐)
在代码当前目录下输入如下命令
docker build -t zhongyao_mcp_server .

打包好镜像,我们可以查看容器镜像

启动运行容器
docker run -d -p 8003:8003 --name zhongyao_mcp_server_instance zhongyao_mcp_server

添加以下配置。请务必将 DOUBAO_API_KEY 替换为您的实际火山引擎豆包 API 密钥。
studio 使用配置文件方式
{
"mcpServers": {
"zhongyao-mcp-server": {
"name": "中药AI视频生成服务",
"description": "提供中药信息查询、文案、语音、视频生成及最终合成的服务。",
"command": "uvx",
"args": [
"zhongyao-mcp-server"
],
"env": {
"ini": "F:\\work\\code\\AIcode\\zhongyao_mcp_server\\config.ini"
}
}
}
}
studio 使用从环境变量加载
{
"mcpServers": {
"zhongyao-mcp-server": {
"name": "中药AI视频生成服务",
"description": "提供中药信息查询、文案、语音、视频生成及最终合成的服务。",
"command": "uvx",
"args": [
"zhongyao-mcp-server"
],
"env": {
"DOUBAO_API_KEY": "火山引擎APIKEY",
"DOUBAO_BASE_URL": "https://ark.cn-beijing.volces.com/api/v3",
"DOUBAO_CHAT_MODEL": "deepseek-v3-250324",
"DOUBAO_IMAGE_MODEL": "doubao-seedream-3-0-t2i-250415",
"DOUBAO_VIDEO_MODEL": "doubao-seedance-1-0-lite-t2v-250428",
"TTS_API_KEY": "自定义TTS密码",
... [View full README on GitHub](https://github.com/zhouqyu666/zhongyao-mcp-server#readme)