google knowledge graph for VS Code
io.github.houtini-ai/google-knowledge-graph
Search Google's Knowledge Graph for structured information about real-world entities
client:VS Code
transport:stdio
runtime:npm
Install google knowledge graph in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "google-knowledge-graph-api-key",
"description": "GOOGLE_KNOWLEDGE_GRAPH_API_KEY",
"password": true
}
],
"servers": {
"google-knowledge-graph": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@houtini/google-knowledge-graph-mcp"
],
"env": {
"GOOGLE_KNOWLEDGE_GRAPH_API_KEY": "${input:google-knowledge-graph-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs