VS Code
Connect xpay✦ Tools to Visual Studio Code with GitHub Copilot’s MCP support.
Prerequisites
- VS Code 1.99+ (MCP support)
- GitHub Copilot extension
- An xpay API key
Setup
Add to .vscode/mcp.json in your project (or user-level settings):
Master Server (all tools)
{
"servers": {
"xpay": {
"type": "http",
"url": "https://mcp.xpay.sh/mcp?key=YOUR_API_KEY"
}
}
}Single Provider
{
"servers": {
"firecrawl": {
"type": "http",
"url": "https://firecrawl.mcp.xpay.sh/mcp?key=YOUR_API_KEY"
}
}
}Collection
{
"servers": {
"dev-tools": {
"type": "http",
"url": "https://devtools.mcp.xpay.sh/mcp?key=YOUR_API_KEY"
}
}
}Verify
- Open the Command Palette (
Cmd+Shift+P/Ctrl+Shift+P) - Search for “MCP: List Servers”
- Your server should appear with a connected status
- In Copilot Chat, ask about available tools
Troubleshooting
- No MCP option: Ensure you have VS Code 1.99+ and the latest Copilot extension
- Server not connecting: Check that the
typefield is set to"http" - Project vs user scope:
.vscode/mcp.jsonis project-scoped; for global access, add to user settings JSON under"mcp.servers"
Last updated on: