mcp neo4j aura manager for VS Code
io.github.neo4j-contrib/mcp-neo4j-aura-manager
MCP server for Neo4j Aura Database Instance Manager.
client:VS Code
transport:stdio
runtime:pypi
Install mcp neo4j aura manager in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "neo4j-aura-client-id",
"description": "NEO4J_AURA_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "neo4j-aura-client-secret",
"description": "NEO4J_AURA_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "neo4j-namespace",
"description": "NEO4J_NAMESPACE",
"password": true
}
],
"servers": {
"mcp-neo4j-aura-manager": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-neo4j-aura-manager"
],
"env": {
"NEO4J_AURA_CLIENT_ID": "${input:neo4j-aura-client-id}",
"NEO4J_AURA_CLIENT_SECRET": "${input:neo4j-aura-client-secret}",
"NEO4J_NAMESPACE": "${input:neo4j-namespace}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs