xap for VS Code
io.github.omoshola-o/xap
Agent settlement protocol — discover, negotiate, settle, and verify with XAP.
client:VS Code
transport:stdio
runtime:npm
Install xap in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "xap-mode",
"description": "XAP_MODE",
"password": true
},
{
"type": "promptString",
"id": "xap-api-key",
"description": "XAP_API_KEY",
"password": true
}
],
"servers": {
"xap": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@agenticamem/xap-mcp"
],
"env": {
"XAP_MODE": "${input:xap-mode}",
"XAP_API_KEY": "${input:xap-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs