Turso MCP Server

Turso CLI - SQLite for production

Local serverstdioPython

What is the Turso MCP server?

Turso CLI - SQLite for production. The turso mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 2 defined tools rather than through you.

What it actually does

An in-process SQL database, compatible with SQLite, and now with a Postgres frontend too.

Turso is an in-process SQL database written in Rust, compatible with SQLite. It runs in production today at multiple organizations.

  • SQLite compatibility — for SQL dialect, file formats, and the C API see [document for details]
  • BEGIN CONCURRENT — for improved write throughput using multi-version concurrency control (MVCC)
  • Change data capture (CDC) — for real-time tracking of database changes
  • Multi-language support — for
  • Asynchronous I/O — support on Linux with io_uring
  • Cross-platform — support for Linux, macOS, Windows and browsers (through WebAssembly)

Adding it to your client

@tursodatabase/database on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Its toolset

Everything the assistant can do here goes through one of these:

  • Configuration — The Configuration tool exposed by this server
  • Contribution — Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Turso Database by you, shall be licensed as MIT

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the turso mcp server does with a few real requests.

When to reach for it

This sits in the database access group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Turso's toolset — Configuration, Contribution — is a fair guide to whether it matches your workflow. It is maintained by GitHub Actions; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
ConfigurationThe Configuration tool exposed by this server.
ContributionUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Turso Database by you, shall be licensed as MIT, without any additional terms or conditions.

How to install the Turso MCP server

{
  "mcpServers": {
    "turso": {
      "command": "/path/to/.turso/tursodb",
      "args": ["./path/to/your/database.db", "--mcp"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Turso to Configuration.
  • Use Turso to Contribution.

Frequently asked questions

It connects Turso to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Configuration, Contribution) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Turso directly.