Distributed SQL database compatible with MySQL protocol for horizontal scaling.
## TiDB MCP Server: Distributed SQL Database The **TiDB MCP Server** integrates TiDB distributed SQL database into Google Antigravity. Execute MySQL-compatible queries with horizontal scaling and strong consistency across distributed infrastructure. ### Why TiDB MCP? TiDB scales MySQL horizontally. The MCP provides: - **MySQL Compatible**: Drop-in MySQL replacement - **Horizontal Scaling**: Add nodes for scale - **HTAP**: Combined OLTP and OLAP - **Strong Consistency**: Raft-based replication ### Key Features #### 1. SQL Operations MySQL-compatible queries: - Standard SQL syntax - Transactions (ACID) - Secondary indexes - Foreign keys #### 2. Distributed Features Scale-out capabilities: - Automatic sharding - Online DDL - Hot data detection - Load balancing ### Configuration ```json { "mcpServers": { "tidb": { "command": "npx", "args": ["-y", "@tidb/mcp-server"], "env": { "TIDB_HOST": "your-host", "TIDB_USER": "root" } } } } ``` The TiDB MCP enables horizontally scalable MySQL operations.
{
"mcpServers": {
"tidb": {}
}
}