From 4910ab09fd32f52e259b45b3b449543e52654472 Mon Sep 17 00:00:00 2001 From: Conor Teichroeb Date: Wed, 12 Nov 2025 08:24:27 -0800 Subject: [PATCH] Update Setup-Guide.mdx Updates JSON configs --- docs/MCP/Getting Started/Setup-Guide.mdx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/MCP/Getting Started/Setup-Guide.mdx b/docs/MCP/Getting Started/Setup-Guide.mdx index eea65494..d9b890e5 100644 --- a/docs/MCP/Getting Started/Setup-Guide.mdx +++ b/docs/MCP/Getting Started/Setup-Guide.mdx @@ -90,8 +90,8 @@ This will open a JSON config file, to which you can add the MCP servers and your "command": "/Users//.local/bin/mcp-proxy", "args": [ "--transport", "streamablehttp", - "-H", "authorization", "{BEARER_TOKEN}", - "-H", "x-iaa-ow-id", "{OW_ID}", + "-H", "authorization", "Bearer YOUR_AUTH_TOKEN_HERE", + "-H", "x-iaa-ow-id", "YOUR_OW_ID_HERE", "https://mcp.iqm.com/v1/report/mcp" ] }, @@ -99,8 +99,8 @@ This will open a JSON config file, to which you can add the MCP servers and your "command": "/Users//.local/bin/mcp-proxy", "args": [ "--transport", "streamablehttp", - "-H", "authorization", "{BEARER_TOKEN}", - "-H", "x-iaa-ow-id", "{OW_ID}", + "-H", "authorization", "Bearer YOUR_AUTH_TOKEN_HERE", + "-H", "x-iaa-ow-id", "YOUR_OW_ID_HERE", "https://mcp.iqm.com/v1/dash/mcp" ] }, @@ -108,8 +108,8 @@ This will open a JSON config file, to which you can add the MCP servers and your "command": "/Users//.local/bin/mcp-proxy", "args": [ "--transport", "streamablehttp", - "-H", "authorization", "{BEARER_TOKEN}", - "-H", "x-iaa-ow-id", "{OW_ID}", + "-H", "authorization", "Bearer YOUR_AUTH_TOKEN_HERE", + "-H", "x-iaa-ow-id", "YOUR_OW_ID_HERE", "https://mcp.iqm.com/v1/bidmodel/mcp" ] } @@ -140,8 +140,8 @@ Create a **.vscode** folder in your project and create an **mcp.json** file in t "command": "/Users//.local/bin/mcp-proxy", "args": [ "--transport", "streamablehttp", - "-H", "authorization", "{BEARER_TOKEN}", - "-H", "x-iaa-ow-id", "{OW_ID}", + "-H", "authorization", "Bearer YOUR_AUTH_TOKEN_HERE", + "-H", "x-iaa-ow-id", "YOUR_OW_ID_HERE", "https://mcp.iqm.com/v1/report/mcp" ] }, @@ -149,8 +149,8 @@ Create a **.vscode** folder in your project and create an **mcp.json** file in t "command": "/Users//.local/bin/mcp-proxy", "args": [ "--transport", "streamablehttp", - "-H", "authorization", "{BEARER_TOKEN}", - "-H", "x-iaa-ow-id", "{OW_ID}", + "-H", "authorization", "Bearer YOUR_AUTH_TOKEN_HERE", + "-H", "x-iaa-ow-id", "YOUR_OW_ID_HERE", "https://mcp.iqm.com/v1/dash/mcp" ] }, @@ -158,8 +158,8 @@ Create a **.vscode** folder in your project and create an **mcp.json** file in t "command": "/Users//.local/bin/mcp-proxy", "args": [ "--transport", "streamablehttp", - "-H", "authorization", "{BEARER_TOKEN}", - "-H", "x-iaa-ow-id", "{OW_ID}", + "-H", "authorization", "Bearer YOUR_AUTH_TOKEN_HERE", + "-H", "x-iaa-ow-id", "YOUR_OW_ID_HERE", "https://mcp.iqm.com/v1/bidmodel/mcp" ] }