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
16 changes: 10 additions & 6 deletions docs/MCP/Getting Started/Setup-Guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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/<your-username>/.local/bin/mcp-proxy",
// The above command value is your mcp-proxy path where <your-username> 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_SERVER_1>/mcp"
// <MCP_SERVER_1> is a placeholder for actual MCP servers
]
},
"iqm-mcp-2": {
// Additional server blocks can be added like this
"type": "stdio",
"command": "/Users/<your-username>/.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_SERVER_2>/mcp"
]
}
}
}
}
```

##### 5. Restart Claude Desktop
Expand All @@ -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/<your-username>/.local/bin/mcp-proxy",
// The above command value is your mcp-proxy path where <your-username> 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_SERVER_1>/mcp"
// <MCP_SERVER_1> is a placeholder for actual MCP servers
]
},
"iqm-mcp-2": {
// Additional server blocks can be added like this
"type": "stdio",
"command": "/Users/<your-username>/.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_SERVER_2>/mcp"
]
}
}
}
}
```

##### 2. Open GitHub Copilot
Expand Down