Skip to content

Okahu MCP Server

Okahu provides an MCP Server so your coding agents can search, analyze and evaluate traces managed by Okahu Cloud from your IDE (1) or CI/CD platform (2).

  1. Visual Studio Code, Cursor, Antigravity, Kiro & more
  2. Github, Jenkins, Gitlab & more
Requires Okahu Cloud account

Okahu MCP Server authenticates using an API KEY used to access your Okahu Cloud account.

Configure Okahu MCP Server in your IDE

  1. Add OKAHU_API_KEY environment variable with your Okahu Cloud API Key.
  2. Add the following block to .vscode/mcp.json file in your project root
    `mcp.json`
    {
      "servers": {
        "okahu": {
          "type": "http",
          "url": "https://mcp.okahu.co/mcp",
          "headers": {
            "x-api-key": "${OKAHU_API_KEY}"
          }
        }
      }
    }
    
  3. Start the MCP Server
  1. Add OKAHU_API_KEY environment variable with your Okahu Cloud API Key.
  2. Add the following block to your .cursor/mcp.json
    `mcp.json`
    {
      "mcpServers": {
        "okahu": {
          "type": "http",
          "url": "https://mcp.okahu.co/mcp",
          "headers": {
             "x-api-key": "${OKAHU_API_KEY}" 
          }
        }
      }
    }
    
  3. Start the MCP Server
Alternatively, install Okahu MCP Server for Cursor using a deeplink instead

Click here to install with deeplink.

  1. Add OKAHU_API_KEY environment variable with your Okahu Cloud API Key.
  2. Add the following block to .kiro/settings/mcp.json file in your project root
    `mcp.json`
    {
      "mcpServers": {
        "okahu": {
          "type": "http",
          "url": "https://mcp.okahu.co/mcp",
          "headers": {
            "x-api-key": "<OKAHU_API_KEY>"
          }
        }
      },
      "inputs": []
    }
    
  3. Start the MCP Server

For Global MCP configuration

  1. Add OKAHU_API_KEY environment variable with your Okahu Cloud API Key.
  2. Add the following block to .gemini/antigravity/mcp_config.json file
    `mcp_config.json`
    {
      "mcpServers": {
        "okahu": {
          "serverUrl": "https://mcp.okahu.co/mcp",
            "headers": {
              "x-api-key": "<OKAHU_API_KEY>",
              "Content-Type": "application/json"
          }
        }
      }
    }
    
  3. Start the MCP Server

For workspace scoped MCP configuration

  1. Add OKAHU_API_KEY environment variable with your Okahu Cloud API Key.
  2. Add the following block to .vscode/mcp.json file in your project root
    `mcp.json`
    {
      "servers": {
        "okahu": {
          "type": "http",
          "url": "https://mcp.okahu.co/mcp",
          "headers": {
            "x-api-key": "${OKAHU_API_KEY}"
          }
        }
      }
    }
    
  3. Start the MCP Server