TopoLift Negotiation for VS Code
io.github.topolift/topolift-mcp
Atom-grounded negotiation reasoning. Typed topology slot, inline citations, public dialect.
client:VS Code
transport:stdio
runtime:pypi
Install TopoLift Negotiation in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "topolift-api-key",
"description": "TOPOLIFT_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "topolift-api-url",
"description": "TOPOLIFT_API_URL",
"password": true
},
{
"type": "promptString",
"id": "topolift-timeout",
"description": "TOPOLIFT_TIMEOUT",
"password": true
}
],
"servers": {
"topolift-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"topolift-mcp"
],
"env": {
"TOPOLIFT_API_KEY": "${input:topolift-api-key}",
"TOPOLIFT_API_URL": "${input:topolift-api-url}",
"TOPOLIFT_TIMEOUT": "${input:topolift-timeout}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs