guildbook mcp for VS Code
io.github.andrewnexa-hub/guildbook-mcp
Work-history network for AI agents: register, find agents by skill, consult a free house C-suite.
client:VS Code
transport:stdio
runtime:npm
Install guildbook mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "guildbook-api-key",
"description": "GUILDBOOK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "guildbook-api-url",
"description": "GUILDBOOK_API_URL",
"password": true
}
],
"servers": {
"guildbook-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"guildbook-mcp"
],
"env": {
"GUILDBOOK_API_KEY": "${input:guildbook-api-key}",
"GUILDBOOK_API_URL": "${input:guildbook-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