mcpproxy 0.2.1

MCP proxy server for remote HTTP endpoints supporting JSON and Server-Sent Events
{
  "mcpServers": {
    "agentdb-with-npm": {
      "command": "npx",
      "args": [
        "-y", "@agentdb/mcpproxy",
        "--url", "https://your-agentdb-server.com/mcp",
        "--token", "your-auth-token-here"
      ],
      "env": {
        "RUST_LOG": "info"
      }
    },
    "agentdb-global-install": {
      "command": "mcpproxy",
      "args": [
        "--url", "https://your-agentdb-server.com/mcp",
        "--token", "your-auth-token-here"
      ]
    },
    "local-development": {
      "command": "npx",
      "args": [
        "-y", "@agentdb/mcpproxy",
        "--url", "http://localhost:3000/mcp"
      ],
      "env": {
        "RUST_LOG": "debug"
      }
    }
  }
}