cli for VS Code
io.settlemesh/cli
Deploy and monetize agent-built apps: login, database, usage billing, and end-user-pays.
client:VS Code
transport:stdio
runtime:npm
Install cli in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "settle-api-key",
"description": "SETTLE_API_KEY",
"password": true
}
],
"servers": {
"cli": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"settlemesh"
],
"env": {
"SETTLE_API_KEY": "${input:settle-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