Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions docs/MCP/Getting Started/Setup-Guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -90,26 +90,26 @@ This will open a JSON config file, to which you can add the MCP servers and your
"command": "/Users/<YOUR_USERNAME>/.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"
]
},
"iqm-mcp-dash": {
"command": "/Users/<YOUR_USERNAME>/.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"
]
},
"iqm-mcp-bm": {
"command": "/Users/<YOUR_USERNAME>/.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"
]
}
Expand Down Expand Up @@ -140,26 +140,26 @@ Create a **.vscode** folder in your project and create an **mcp.json** file in t
"command": "/Users/<YOUR_USERNAME>/.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"
]
},
"iqm-mcp-dash": {
"command": "/Users/<YOUR_USERNAME>/.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"
]
},
"iqm-mcp-bm": {
"command": "/Users/<YOUR_USERNAME>/.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"
]
}
Expand Down