mcp-imagex
If you are the rightful owner of mcp-imagex and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Volcengine ImageX MCP is a Model Context Protocol server implementation that integrates Volcengine services into LLM model contexts, enabling large models to directly upload and process image resources.
Volcengine ImageX MCP
Volcengine ImageX 的 Model Context Protocol (MCP) Server 实现
项目简介
Volcengine ImageX MCP是一个基于Model Context Protocol的 MCP-server, 它将 Volcengine 服务集成到LLM模型上下文中,使大模型能够直接上传和处理图片资源。
功能特点
- 提供多种资源访问接口,便于LLM获取veImageX服务信息、图片资源等
- 实现了多个veImageX功能的工具封装,包括图片资源的管理、文生图、AIGC画质修复、画质评估以及常用的用量、质量查询能力
- 提供多种预定义提示模板,帮助LLM更好地理解和使用veImageX功能
安装
环境要求
- Python 3.11+
- 火山引擎账号及AccessKey/SecretKey
使用方法
在 mcp client 中配置 mcp 服务, 配置的 MCP JSON:
{
"mcpServers": {
"volcengine": {
"disabled": false,
"command": "uvx",
"args": ["veimagex-mcp"],
"env": {
"VOLCENGINE_ACCESS_KEY": "Your Volcengine AK",
"VOLCENGINE_SECRET_KEY": "Your Volcengine SK",
"SERVICE_ID": "Your Service ID",
"DOMAIN": "Your Domain"
},
"transportType": "stdio"
}
}
}