Skip to content

Configure and Start the Okahu MCP Server

  1. Select the Explorer view sidebar option
  2. Open the .env.monocle file and copy the OKAHU_API_KEY value
  3. Open the .vscode/mcp.json file and replace the <OKAHU_API_KEY> with the value you copied from the .env.monocle file and Save the file

Example:

File Entry
.env.monocle OKAHU_API_KEY=abc123xyz456
mcp.json "x-api-key": "abc123xyz456"

.vscode/mcp.json:

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

For more details, see Okahu MCP Server.