🗂️ A Model Context Protocol (MCP) server that provides integration with Turso databases for LLMs. This server implements a two-level authentication
If you already use MCP, the mcp mcp server is the piece that lets your assistant work with it directly. 🗂️ A Model Context Protocol (MCP) server that provides integration with Turso databases for LLMs. This server implements a two-level authentication system to handle both organization-level and database-level operations, making it easy to.
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
list_databases — The list_databases tool exposed by this servercreate_database — The create_database tool exposed by this serverdelete_database — The delete_database tool exposed by this servergenerate_database_token — The generate_database_token tool exposed by this serverlist_tables — The list_tables tool exposed by this serverexecute_read_only_query — Executes a read-only SQL query (SELECT, PRAGMA) against a databaseexecute_query — Executes a potentially destructive SQL query (INSERT, UPDATE, DELETE, CREATE, etc.) against a databasedescribe_table — The describe_table tool exposed by this servervector_search — Performs vector similarity search using SQLite vector extensionsSetup — The Setup tool exposed by this serverPublishing — The Publishing tool exposed by this serverSetup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
Configuration is passed through the environment: TURSO_API_TOKEN, TURSO_ORGANIZATION, TURSO_DEFAULT_DATABASE. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Among the database access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MCP's toolset — list_databases, create_database, delete_database and 8 more — is a fair guide to whether it matches your workflow. It is maintained by spences10; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| list_databases | The list_databases tool exposed by this server. |
| create_database | The create_database tool exposed by this server. |
| delete_database | The delete_database tool exposed by this server. |
| generate_database_token | The generate_database_token tool exposed by this server. |
| list_tables | The list_tables tool exposed by this server. |
| execute_read_only_query | Executes a read-only SQL query (SELECT, PRAGMA) against a database. |
| execute_query | Executes a potentially destructive SQL query (INSERT, UPDATE, DELETE, CREATE, etc.) against a database. |
| describe_table | The describe_table tool exposed by this server. |
| vector_search | Performs vector similarity search using SQLite vector extensions. |
| Setup | The Setup tool exposed by this server. |
| Publishing | The Publishing tool exposed by this server. |
{
"mcpServers": {
"mcp-turso-cloud": {
"command": "npx",
"args": ["-y", "mcp-turso-cloud"],
"env": {
"TURSO_API_TOKEN": "your-turso-api-token",
"TURSO_ORGANIZATION": "your-organization-name",
"TURSO_DEFAULT_DATABASE": "optional-default-database"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| TURSO_API_TOKEN | Credential the server authenticates with. | Yes |
| TURSO_ORGANIZATION | Configuration value read at startup. | Optional |
| TURSO_DEFAULT_DATABASE | Configuration value read at startup. | Optional |
Read-only SQL access to Postgres — let your assistant inspect schemas and answer questions from real data.
Manage your whole Supabase project in conversation — database, auth, storage, Edge Functions and branches.
Query, modify and analyse local SQLite databases in conversation — the fastest way to chat with a data file.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Official MongoDB server covering data, schemas and Atlas management — from find queries to spinning up clusters.
Serverless Postgres with database branching — point your assistant at Neon and let it work on disposable copies.