Skip to content
Cursor

ovh api mcp for Cursor

io.github.davidlandais/ovh-api-mcp

MCP server for the OVH API. Explore and call any OVH endpoint via sandboxed JS.

client:Cursor transport:stdio runtime:oci

Install ovh api mcp in Cursor

~/.cursor/mcp.json · windows: %USERPROFILE%\.cursor\mcp.json

Held in this page only — never stored, logged, or sent anywhere but back to your screen.

{
  "mcpServers": {
    "ovh-api-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/davidlandais/ovh-api-mcp:0.3.0"
      ],
      "env": {
        "OVH_APPLICATION_KEY": "<OVH_APPLICATION_KEY>",
        "OVH_APPLICATION_SECRET": "<OVH_APPLICATION_SECRET>",
        "OVH_CONSUMER_KEY": "<OVH_CONSUMER_KEY>",
        "OVH_ENDPOINT": "<OVH_ENDPOINT>",
        "OVH_SERVICES": "<OVH_SERVICES>",
        "OVH_CLIENT_ID": "<OVH_CLIENT_ID>",
        "OVH_CLIENT_SECRET": "<OVH_CLIENT_SECRET>"
      }
    }
  }
}

Use .cursor/mcp.json in a project root instead to scope it to that project. Cursor merges both. Cursor docs

ovh api mcp in other clients