Configure and Start the Okahu MCP Server¶
- Select the Explorer view sidebar option
- Open the
.env.monoclefile and copy theOKAHU_API_KEYvalue - Open the
.vscode/mcp.jsonfile and replace the<OKAHU_API_KEY>with the value you copied from the.env.monoclefile 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.