Connect Rshift MCP in VS Code
VS Code MCP support can add Rshift as an HTTP MCP server. The exact UI depends on the MCP extension or VS Code version, but the required values are the URL and the Authorization header.
Before you start
Enable MCP from the Rshift workspace AI page.
Copy the MCP URL.
Copy the full MCP key.
Confirm that your VS Code / Copilot Chat environment supports MCP.
Add the server
Open the Command Palette.
Choose MCP: Add Server.
Choose HTTP server.
Set the server name to
rshift.Paste the Rshift MCP URL.
Choose whether to save it in your User or Workspace configuration.
You can also edit VS Code's mcp.json manually. Important: VS Code uses a top-level servers object, not Cursor's mcpServers shape.
{
"servers": {
"rshift": {
"type": "http",
"url": "https://mcp.rshift.com/<workspace>/",
"headers": {
"Authorization": "Bearer <MCP_KEY>"
}
}
}
}
If you use Workspace configuration, do not commit the real key. Prefer User configuration, or use VS Code input variables / environment files for sensitive values.
Verify the connection
Refresh the MCP server list.
Confirm that
rshiftconnects successfully.Check the available tool count and tool names.
Common issues
No MCP command appears: confirm that your version or extension supports MCP.
JSON config does not work: confirm that the top-level field is
serversand the remote server has"type": "http".Header is ignored: check that
Authorizationis set inside theheadersobject.Connection times out: confirm that your network can reach
https://mcp.rshift.com/.
Security
If VS Code stores MCP config in the project directory, add the file to .gitignore or use user-level configuration.