Skip to content

Okahu MCP

Okahu provides an MCP (Model Context Protocol) HTTP endpoint so your IDE can connect to Okahu capabilities.

Configure Okahu MCP

VS Code

Create a .vscode/mcp.json file in your project root and add:

{
  "servers": {
    "okahu": {
      "type": "http",
      "url": "https://mcp.okahu.co/mcp",
      "headers": {
        "x-api-key": "${OKAHU_API_KEY}"
      }
    }
  }
}

Make sure the OKAHU_API_KEY value is available to VS Code (for example, via your environment) before you start using the MCP tools.

Cursor

Install using this deeplink:

Install Okahu MCP in Cursor

Or add it to your .cursor/mcp.json:

{
  "mcpServers": {
    "okahu": {
      "type": "http",
      "url": "https://mcp.okahu.co/mcp",
      "headers": {
        "x-api-key": "${OKAHU_API_KEY}"
      }
    }
  }
}