claude_desktop.jsonβ’1.51 kB
{
"name": "Claude Desktop Configuration",
"description": "Configuration for Claude Desktop MCP integration",
"configurations": [
{
"name": "stdio_mode",
"description": "STDIO transport mode (recommended)",
"config": {
"mcpServers": {
"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"
}
}
}
}
},
{
"name": "docker_mode",
"description": "Docker-based deployment",
"config": {
"mcpServers": {
"adaptive-graph-of-thoughts": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"--network", "host",
"-e", "NEO4J_URI=bolt://localhost:7687",
"-e", "NEO4J_USER=neo4j",
"-e", "NEO4J_PASSWORD=your_password",
"-e", "MCP_TRANSPORT_TYPE=stdio",
"adaptive-graph-of-thoughts:latest"
]
}
}
}
}
]
}