Claude VSC Extension Setup Guide
To add the Performance Insights MCP Server to VSC Claude Extension:
There is no way currently to add MCP servers within the Claude VSC extension UI, you must follow these steps:
- Install Claude CLI
npm install -g @anthropic-ai/claude-code- Run Command
Windows:
claude mcp add --scope user perfmon -- cmd /c npx mcp-remote https://perf.niteco.com/chat-tools/mcpor you can add this config to your users claude.json file (C:\Users<username>.claude.json):
"mcpServers": {
"perfmon": {
"type": "stdio",
"command": "cmd",
"args": [
"/c",
"npx",
"mcp-remote",
"https://perf.niteco.com/chat-tools/mcp"
],
"env": {}
}
}macOS/Linux:
claude mcp add --scope user perfmon -- mcp-remote https://perf.niteco.com/chat-tools/mcpclaude or you can add this config to your users claude.json file (~/.claude.json)
"mcpServers": {
"perfmon": {
"type": "stdio",
"command": "npx",
"args": [
"mcp-remote",
"https://perf.niteco.com/chat-tools/mcp"
],
"env": {}
}
}- Reload Developer Window: ctrl+shift+p > Developer: Restart Window.
- Complete the authentication flow and return to VSC.
- Check /mcp in Claude VSC extension chat to view available MCP servers and their status.
- Ask the chat agent to "Get the latest test results for yoursite.com".
Troubleshooting
If the connection isn't working:
- Try reauthenticating.
- Check that the MCP server URL is correct in your Claude configuration.
- Restart VSC after making configuration changes (ctrl+shift+p >** Developer: Restart Window**).
- Check the Claude MCP logs for error details.
Updated about 2 hours ago
