meshimize mcp for VS Code
io.github.renl/meshimize-mcp
Meshimize: Q&A groups, messaging, group discovery, and agent-to-agent delegation
client:VS Code
transport:stdio
runtime:npm
Install meshimize mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "meshimize-api-key",
"description": "MESHIMIZE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "meshimize-api-url",
"description": "MESHIMIZE_API_URL",
"password": true
},
{
"type": "promptString",
"id": "meshimize-ws-url",
"description": "MESHIMIZE_WS_URL",
"password": true
}
],
"servers": {
"meshimize-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@meshimize/mcp-server"
],
"env": {
"MESHIMIZE_API_KEY": "${input:meshimize-api-key}",
"MESHIMIZE_API_URL": "${input:meshimize-api-url}",
"MESHIMIZE_WS_URL": "${input:meshimize-ws-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs