vscode.jsonβ’706 B
{
"name": "VS Code Configuration",
"description": "Configuration for VS Code MCP integration",
"settings": {
"mcp.servers": {
"adaptive-graph-of-thoughts": {
"command": "python",
"args": [
"-m", "adaptive_graph_of_thoughts.main"
],
"cwd": "/path/to/Adaptive-Graph-of-Thoughts-MCP-server",
"env": {
"NEO4J_URI": "bolt://localhost:7687",
"NEO4J_USER": "neo4j",
"NEO4J_PASSWORD": "your_password",
"NEO4J_DATABASE": "neo4j",
"MCP_TRANSPORT_TYPE": "stdio",
"LOG_LEVEL": "INFO",
"PYTHONPATH": "/path/to/Adaptive-Graph-of-Thoughts-MCP-server/src"
}
}
}
}
}