feat: add mcp-servers/**

This commit is contained in:
Sun-ZhenXing
2025-10-23 09:21:44 +08:00
parent f603ed5db9
commit 5c3fc0f844
94 changed files with 2211 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
# Neo4j Cypher MCP Server
Neo4j Cypher MCP Server provides Cypher query capabilities for Neo4j graph databases through the Model Context Protocol.
## Features
- 🔍 **Cypher Queries** - Execute Cypher queries
- 📊 **Graph Analysis** - Analyze graph structures
- 🔗 **Graph Exploration** - Explore graph data
## Environment Variables
| Variable | Default | Description |
| -------------------------------- | ----------------------- | ------------------------------ |
| `MCP_NEO4J_CYPHER_VERSION` | `latest` | MCP Neo4j Cypher image version |
| `MCP_NEO4J_CYPHER_PORT_OVERRIDE` | `8000` | MCP service port |
| `NEO4J_URL` | `bolt://localhost:7687` | Neo4j connection URL |
| `NEO4J_USER` | `neo4j` | Database user |
| `NEO4J_PASSWORD` | `password` | Database password |
| `TZ` | `UTC` | Timezone |
## Quick Start
```bash
docker compose up -d
```