VS Code / GitHub Copilot¶
Setup¶
Add a .vscode/mcp.json file in your project root:
{
"servers": {
"oas": {
"type": "stdio",
"command": "uvx",
"args": ["--from", "open-agent-search", "oas-mcp"]
}
}
}
Different format
VS Code uses "servers" (not "mcpServers") and requires a "type" field. This is different from Claude Desktop and Cursor.
Global Configuration¶
To make it available across all VS Code workspaces, add it to your User Settings (settings.json):
{
"mcp": {
"servers": {
"oas": {
"type": "stdio",
"command": "uvx",
"args": ["--from", "open-agent-search", "oas-mcp"]
}
}
}
}
Verify¶
- Open the Command Palette (
Ctrl+Shift+P/Cmd+Shift+P) - Run MCP: List Servers
- You should see
oaslisted
Using a Remote Server¶
For a deployed Open Agent Search instance: