Skip to main content

Codex CLI

~/.codex/mcp.json:
{
  "mcpServers": {
    "eddyhdzg": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://eddyhdzg.com/api/mcp"]
    }
  }
}

Agents SDK

import { Agent, MCPServerStreamableHttp } from "@openai/agents";

const eddyhdzg = new MCPServerStreamableHttp({ url: "https://eddyhdzg.com/api/mcp" });
await eddyhdzg.connect();

const agent = new Agent({
  name: "Austin scout",
  instructions: "Use the eddyhdzg MCP tools.",
  mcpServers: [eddyhdzg],
});
Python: same shape via from agents import Agent, MCPServerStreamableHttp.