openai MCP Server
在 Claude 中调用 GPT 系列模型,实现多模型协作,适合需要图像生成或特定能力的场景
返回 MCP 专区
AI 模型
openai
4.2k stars在 Claude 中调用 GPT 系列模型,实现多模型协作,适合需要图像生成或特定能力的场景
OpenAIGPT-4多模型DALL-E
安装与配置
安装命令
npx openai-mcpCursor / Claude Desktop 配置(mcp.json)
{
"mcpServers": {
"openai": {
"command": "npx",
"args": [
"openai-mcp"
]
}
}
}典型使用场景
- 在一个对话中调用多个 AI 模型能力
- 复杂推理任务拆解为链式步骤
- 图像生成、语音合成等多模态任务
查看源码 / 官方文档
访问 GitHub 仓库获取最新文档、配置说明和 issue 反馈。
在 GitHub 上查看