From 247ea05c93b8406635372c8912c70004f35fddea Mon Sep 17 00:00:00 2001 From: Conor Teichroeb Date: Thu, 30 Oct 2025 09:02:32 -0700 Subject: [PATCH] Update Setup-Guide.mdx Config update --- docs/MCP/Getting Started/Setup-Guide.mdx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/docs/MCP/Getting Started/Setup-Guide.mdx b/docs/MCP/Getting Started/Setup-Guide.mdx index 87516099..1548714e 100644 --- a/docs/MCP/Getting Started/Setup-Guide.mdx +++ b/docs/MCP/Getting Started/Setup-Guide.mdx @@ -62,26 +62,28 @@ This will open a JSON config file, to which you can add the MCP servers: { "mcpServers": { "iqm-mcp-1": { - "type": "stdio", "command": "/Users//.local/bin/mcp-proxy", // The above command value is your mcp-proxy path where is your actual system name "args": [ "--transport", "streamablehttp", + "-H", "authorization", "Bearer YOUR_AUTH_TOKEN_HERE", + "-H", "x-iaa-ow-id", "YOUR_OW_ID_HERE", "https://mcp.iqm.com/v1//mcp" // is a placeholder for actual MCP servers ] }, "iqm-mcp-2": { // Additional server blocks can be added like this - "type": "stdio", "command": "/Users//.local/bin/mcp-proxy", "args": [ "--transport", "streamablehttp", + "-H", "authorization", "Bearer YOUR_AUTH_TOKEN_HERE", + "-H", "x-iaa-ow-id", "YOUR_OW_ID_HERE", "https://mcp.iqm.com/v1//mcp" ] } } - } +} ``` ##### 5. Restart Claude Desktop @@ -103,26 +105,28 @@ Create a **.vscode** folder in your project and create an **mcp.json** file in t { "servers": { "iqm-mcp-1": { - "type": "stdio", "command": "/Users//.local/bin/mcp-proxy", // The above command value is your mcp-proxy path where is your actual system name "args": [ "--transport", "streamablehttp", + "-H", "authorization", "Bearer YOUR_AUTH_TOKEN_HERE", + "-H", "x-iaa-ow-id", "YOUR_OW_ID_HERE", "https://mcp.iqm.com/v1//mcp" // is a placeholder for actual MCP servers ] }, "iqm-mcp-2": { // Additional server blocks can be added like this - "type": "stdio", "command": "/Users//.local/bin/mcp-proxy", "args": [ "--transport", "streamablehttp", + "-H", "authorization", "Bearer YOUR_AUTH_TOKEN_HERE", + "-H", "x-iaa-ow-id", "YOUR_OW_ID_HERE", "https://mcp.iqm.com/v1//mcp" ] } } - } +} ``` ##### 2. Open GitHub Copilot