Turbular
Planned integration for MongoDB databases, enabling querying and schema management (in roadmap).
Supports connecting to MySQL databases, enabling schema retrieval, SQL query execution, and automatic schema normalization for LLM compatibility.
Supports connecting to PostgreSQL databases, enabling schema retrieval, SQL query execution, and automatic schema normalization for LLM compatibility.
Planned integration for Snowflake databases, enabling querying and schema management (in roadmap).
Supports connecting to SQLite databases, enabling schema retrieval, SQL query execution, and automatic schema normalization for LLM compatibility.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Turbularshow me the tables in my PostgreSQL database"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Turbular
Turbular is an open-source Model Context Protocol (MCP) server that enables seamless database connectivity for Language Models (LLMs). It provides a unified API interface to interact with various database types, making it perfect for AI applications that need to work with multiple data sources.
โจ Features
๐ Multi-Database Support: Connect to various database types through a single API
๐ Schema Normalization: Automatically normalize database schemas to correct naming conventions for LLM compatibility
๐ Secure Connections: Support for SSL and various authentication methods
๐ High Performance: Optimizes your LLM generated queries
๐ Query Transformation: Let LLM generate queries against normalized layouts and transform them into their unnormalized form
๐ณ Docker Support: Easy deployment with Docker and Docker Compose
๐ง Easy to Extend: Adding new database providers can be easily done by extending the BaseDBConnector interface
Related MCP server: Polyglot DB MCP
๐๏ธ Supported Databases
Database Type | Status | Icon |
PostgreSQL | โ | |
MySQL | โ | |
SQLite | โ | |
BigQuery | โ | |
Oracle | โ | |
MS SQL | โ | |
Redshift | โ |
๐ Quick Start
Using Docker (Recommended)
Clone the repository:
git clone https://github.com/raeudigerRaeffi/turbular.git cd turbularStart the development environment:
docker-compose -f docker-compose.dev.yml up --buildTest the connection:
./scripts/test_connection.py
Manual Installation
Install Python 3.11 or higher
Install dependencies:
pip install -r requirements.txtRun the server:
uvicorn app.main:app --reload
๐ API Reference
Database Operations
Get Database Schema
POST /get_schemaRetrieve the schema of a connected database for your LLM agent.
Parameters:
db_info: Database connection argumentsreturn_normalize_schema(optional): Return schema in LLM-friendly format
Execute Query
POST /execute_queryOptimizes query and then execute SQL queries on the connected database.
Parameters:
db_info: Database connection argumentsquery: SQL query stringnormalized_query: Boolean indicating if query is normalizedmax_rows: Maximum number of rows to returnautocommit: Boolean for autocommit mode
File Management
Upload BigQuery Key
POST /upload-bigquery-keyUpload a BigQuery service account key file.
Parameters:
project_id: BigQuery project IDkey_file: JSON key file
Upload SQLite Database
POST /upload-sqlite-fileUpload a SQLite database file.
Parameters:
database_name: Name to identify the databasedb_file: SQLite database file (.db or .sqlite)
Utility Endpoints
Health Check
GET /healthVerify if the API is running.
List Supported Databases
GET /supported-databasesGet a list of all supported database types.
๐ง Development Setup
Fork and clone the repository
Create a development environment:
docker-compose -f docker-compose.dev.yml up --buildThe development server includes:
FastAPI server with hot reload
PostgreSQL test database
Pre-configured test data
Access the API documentation:
Swagger UI: http://localhost:8000/docs
ReDoc: http://localhost:8000/redoc
๐ค Contributing
We welcome contributions! Here's how you can help:
Check out our contribution guidelines
Look for open issues
Submit pull requests with improvements
Help with documentation
Share your feedback
Development Guidelines
Follow PEP 8 style guide
Write tests for new features
Update documentation as needed
Use meaningful commit messages
Roadmap
Add more testing, formatting and commit hooks
Add SSH support for database connection
Add APIs as datasources using steampipe
Enable local schema saving for databases to which the server has already connected
Add more datasources (snowflake, mongodb, excel, etc.)
Add authentication protection to routes
๐งช Testing
Run the test suite:
pytestFor development tests with the included PostgreSQL:
./scripts/test_connection.py๐ Documentation
๐ Connection Examples
PostgreSQL
connection_info = {
"database_type": "PostgreSQL",
"username": "user",
"password": "password",
"host": "localhost",
"port": 5432,
"database_name": "mydb",
"ssl": False
}BigQuery
connection_info = {
"database_type": "BigQuery",
"path_cred": "/path/to/credentials.json",
"project_id": "my-project",
"dataset_id": "my_dataset"
}SQLite
connection_info = {
"type": "SQLite",
"database_name": "my_database"
}๐ Acknowledgments
FastAPI for the amazing framework
SQLAlchemy for database support
@henryclickclack Henry Albert Jupiter Hommel as Co-Developer โค๏ธ
All our contributors and users
๐ Support
Create an issue
Email: raffael@turbular.com
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/raeudigerRaeffi/turbular'
If you have feedback or need assistance with the MCP directory API, please join our Discord server