pingpoint for VS Code
io.github.sudzikcoin/pingpoint
Live truck GPS: create loads, read position, ETA, driver state, trip stats. API key or USDC x402.
client:VS Code
transport:stdio
runtime:npm
Install pingpoint in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pingpoint-agent-key",
"description": "PINGPOINT_AGENT_KEY",
"password": true
},
{
"type": "promptString",
"id": "pingpoint-wallet-key-file",
"description": "PINGPOINT_WALLET_KEY_FILE",
"password": true
},
{
"type": "promptString",
"id": "pingpoint-network",
"description": "PINGPOINT_NETWORK",
"password": true
},
{
"type": "promptString",
"id": "pingpoint-base-url",
"description": "PINGPOINT_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "pingpoint-rpc-url",
"description": "PINGPOINT_RPC_URL",
"password": true
}
],
"servers": {
"pingpoint": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@suverselabs/pingpoint-mcp"
],
"env": {
"PINGPOINT_AGENT_KEY": "${input:pingpoint-agent-key}",
"PINGPOINT_WALLET_KEY_FILE": "${input:pingpoint-wallet-key-file}",
"PINGPOINT_NETWORK": "${input:pingpoint-network}",
"PINGPOINT_BASE_URL": "${input:pingpoint-base-url}",
"PINGPOINT_RPC_URL": "${input:pingpoint-rpc-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs