Xero for VS Code
io.github.asklokesh/xero-mcp-server
MCP server for Xero API integration
client:VS Code
transport:stdio
runtime:pypi
Install Xero in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "xero-api-key",
"description": "XERO_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "xero-api-url",
"description": "XERO_API_URL",
"password": true
}
],
"servers": {
"xero-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"xero-mcp-server"
],
"env": {
"XERO_API_KEY": "${input:xero-api-key}",
"XERO_API_URL": "${input:xero-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs