Currently, there is no built-in interface or automatic detection for adding custom MCP servers within the VS Code extension (Claude Code). While MCP servers can be configured for the Claude Code CLI, the VS Code extension lacks a corresponding Client Configuration to recognize and connect to servers like UnityMCP.
Status & Workaround
I attempted to use UnityMCP within VS Code, but it was not detected. The only way to resolve this was to manually inject the server configuration into the VS Code User Settings (settings.json):
"claudeCode.mcpServers": {
"UnityMCP": {
"type": "http",
"url": "http://127.0.0"
}
}
Suggested Improvements
- Setup Guide: It would be helpful to provide specific instructions on how to bridge the configuration between the CLI and the VS Code extension so that users don't have to define the server in two different places.