Graph-relational database with EdgeQL query language.
## EdgeDB MCP Server: Graph-Relational Database The **EdgeDB MCP Server** integrates EdgeDB into Google Antigravity. Query data with EdgeQL, a modern query language combining SQL and GraphQL concepts. ### Why EdgeDB MCP? EdgeDB offers a modern query language. The MCP provides: - **EdgeQL**: Modern query syntax - **Type System**: Schema-first design - **Migrations**: Built-in migration system - **GraphQL**: Auto-generated GraphQL API ### Key Features #### 1. Query Language EdgeQL features: - Path expressions - Composability - Type safety - Aggregations #### 2. Schema Design Type-safe modeling: - Abstract types - Computed properties - Access policies - Migrations ### Configuration ```json { "mcpServers": { "edgedb": { "command": "npx", "args": ["-y", "@edgedb/mcp-server"], "env": { "EDGEDB_DSN": "edgedb://localhost" } } } } ``` The EdgeDB MCP enables modern graph-relational queries.
{
"mcpServers": {
"edgedb": {}
}
}