🚀 OVH MCP服务器-开源OVH模型上下文协议服务器

一个安全、可扩展的MCP服务器,使用您最喜欢的MCP客户端管理您的OVH基础设施
______________________________________________________________________
🌐 关于OVHCloud MCP服务器
OVH MCP服务器 是一个开源平台,旨在使用模型上下文协议管理OVHCloud资源。此MCP服务器通过LLM实现高效管理。
______________________________________________________________________
☁️ 支持的API
🚧 : 进行中
- \[ \] 专用服务器
- \[ \] 虚拟专用服务器 🚧
- \[ \] 人工智能与机器学习
- \[ \] 域名 🚧
- \[ \] 数据处理
- \[ \] 托管私有云
- \[ \] 托管数据库
- \[ \] 托管Kubernetes
- \[ \] 托管注册表
- \[ \] 公共云计算
- \[ \] 公共云存储
- \[ \] Web PaaS
- \[ \] 专用网络
______________________________________________________________________
📋 需求
Node.js:v22
OVHcloud API证书:https://www.ovh.com/auth/api/createToken
______________________________________________________________________
🚀 快速开始
# Clone the repo
git clone https://github.com/0x2A-git/ovh-mcp.git && cd ovh-mcp
# Build
npm ci
npm run build
# Edit env file to add OVH credentials
cp .env.sample .env
# Run using Docker Compose
docker compose up🛠️ 完整设置
# Clone the repo
git clone https://github.com/0x2A-git/ovh-mcp.git && cd ovh-mcp
# Edit env file to add OVH credentials
cp .env.sample .env
# Install deps
npm ci
# Build
npm run build
# Run
node dist/src/index.js
# Dev only : Run tests with coverage
npm run test直接列出并尝试资源
npx @modelcontextprotocol/inspector node dist/src/index.js🤖 VSCode x副驾驶集成
在settings.json文件中添加以下内容:
{
// ...
"mcp": {
"inputs": [],
"servers": {
"ovh-mcp": {
"url": "http://localhost:8000/sse"
}
}
}
}