@phidiassj/aiyoperps-mcp-bridge
v0.8.6
Published
Stdio MCP bridge for the AiyoPerps local HTTP MCP endpoint.
Maintainers
Readme
AiyoPerps MCP Bridge
This package exposes a standard MCP stdio server that forwards requests to the local AiyoPerps HTTP MCP endpoint.
It supports both:
- classic
Content-Lengthframed MCP stdio - newline-delimited JSON messages used by current Codex MCP startup
Usage
npx -y @phidiassj/aiyoperps-mcp-bridgeCustom endpoint:
npx -y @phidiassj/aiyoperps-mcp-bridge --url http://127.0.0.1:5078/mcpUse --url whenever your MCP endpoint is not the local default.
Or via environment variable:
AIYOPERPS_MCP_URL=http://127.0.0.1:5078/mcp npx -y @phidiassj/aiyoperps-mcp-bridgeHealth check only:
npx -y @phidiassj/aiyoperps-mcp-bridge --health-check --url http://127.0.0.1:5078/mcpStartup validation before entering stdio mode:
npx -y @phidiassj/aiyoperps-mcp-bridge --startup-ping --url http://127.0.0.1:5078/mcpWrite local diagnostics to a file:
npx -y @phidiassj/aiyoperps-mcp-bridge --debug-log ~/.aiyoperps/mcp-bridge/codex-debug.log --quiet --url http://127.0.0.1:5078/mcpTypical MCP config
{
"mcpServers": {
"aiyoperps": {
"command": "npx",
"args": [
"-y",
"@phidiassj/aiyoperps-mcp-bridge",
"--debug-log",
"~/.aiyoperps/mcp-bridge/codex-debug.log",
"--quiet",
"--url",
"http://127.0.0.1:5078/mcp"
]
}
}
}