gilbert mcp for VS Code
io.github.hugof1234/gilbert-mcp
Gilbert meetings: list, search, and fetch transcripts & summaries via MCP.
client:VS Code
transport:stdio
runtime:npm
Install gilbert mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gilbert-api-key",
"description": "GILBERT_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "gilbert-base-url",
"description": "GILBERT_BASE_URL",
"password": true
}
],
"servers": {
"gilbert-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"gilbert-mcp"
],
"env": {
"GILBERT_API_KEY": "${input:gilbert-api-key}",
"GILBERT_BASE_URL": "${input:gilbert-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs