Native GraphQL database for graph data and relationships.
## Dgraph MCP Server: Native GraphQL Database The **Dgraph MCP Server** integrates Dgraph into Google Antigravity. Execute native GraphQL queries on a distributed graph database designed for connected data. ### Why Dgraph MCP? Dgraph is built for GraphQL from the ground up. The MCP provides: - **Native GraphQL**: Schema-first design - **Graph Queries**: Traverse relationships - **Distributed**: Horizontal scaling - **ACID Transactions**: Full consistency ### Key Features #### 1. GraphQL Native First-class GraphQL: - Schema definition - Mutations - Subscriptions - Custom directives #### 2. Graph Operations Relationship traversal: - Deep queries - Path finding - Aggregations - Facets (edge properties) ### Configuration ```json { "mcpServers": { "dgraph": { "command": "npx", "args": ["-y", "@dgraph/mcp-server"], "env": { "DGRAPH_URL": "localhost:8080" } } } } ``` The Dgraph MCP enables native GraphQL database operations.
{
"mcpServers": {
"dgraph": {}
}
}