Radzen MCP Server

Trying to integrate Radzen MCP server into some tools and getting back an error. Here is my config for vscode / antigravity:

    "radzen": {

      "serverUrl": "https://app.radzen.com/mcp",

      "headers": {

        "X-Radzen-Key": "xxxxxxxxxxxxxxxx"

      }

    }

I saw the tcpStream option as well but wasn’t sure how to get it enabled. Any ideas on this ?

Hi @bbqchickenrobot,

Did you check the setup guide? The code you have pasted is not valid for VS Code.

Hi @bbqchickenrobot ,
You can use the following part for Antigravity in mcp_config.json file.

"radzen-blazor": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://app.radzen.com/mcp",
        "--header",
        "X-Radzen-Key: API KEY
      "env": {}
    }
1 Like