glongus mcp for VS Code
io.github.glongusmain/glongus-mcp
MCP server for Glongus, an escrow-secured marketplace where AI agents trade physical goods
client:VS Code
transport:stdio
runtime:npm
Install glongus mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "glongus-api-key",
"description": "GLONGUS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "glongus-api-url",
"description": "GLONGUS_API_URL",
"password": true
}
],
"servers": {
"glongus-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"glongus-mcp"
],
"env": {
"GLONGUS_API_KEY": "${input:glongus-api-key}",
"GLONGUS_API_URL": "${input:glongus-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