MCP Catalogs
Home

mcp-turso-cloud

by spences10·15·Score 42

A well-documented MCP server for Turso database integration with dual authentication and query separation.

databasedeveloper-toolsai-llm
6
Forks
10
Open issues
this month
Last commit
2d ago
Indexed

Overview

The mcp-turso-cloud server provides comprehensive integration with Turso databases, allowing LLMs to perform both organization-level and database-level operations. It features a sophisticated two-level authentication system using both API tokens and database-specific tokens. The server maintains a clear security separation between read-only and destructive database operations, making it safer for use with LLMs. The implementation follows MCP standards and offers well-documented tools for database management, querying, and vector search capabilities.

Try asking AI

After installing, here are 3 things you can ask your AI assistant:

you:LLM-powered data analysis and querying of Turso databases
you:Automated database management through natural language commands
you:AI applications that need to interact with vector search capabilities in Turso

When to choose this

Choose this MCP server if you're already using Turso databases and want to enable LLM interactions while maintaining secure separation between read and write operations.

When NOT to choose this

Don't choose this if you need to work with other database systems as it's specifically designed for Turso with limited portability.

Tools this server exposes

9 tools extracted from the README
  • list_databases

    Lists all databases in your Turso organization.

  • create_database

    Creates a new database in your organization.

  • delete_database

    Deletes a database from your organization.

  • generate_database_token

    Generates a new token for a specific database.

  • list_tables

    Lists all tables in a database.

  • 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

    Gets schema information for a table.

  • vector_search

    Performs vector similarity search using SQLite vector extensions.

Comparable tools

supabase-mcpneon-mcppostgres-mcpmysql-mcp

Installation

Installation

  1. Install via npm:
npm install -g mcp-turso-cloud
  1. Configure in Claude Desktop:
{
  "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"
      }
    }
  }
}
  1. Or for WSL environments:
{
  "mcpServers": {
    "mcp-turso-cloud": {
      "command": "wsl.exe",
      "args": [
        "bash",
        "-c",
        "TURSO_API_TOKEN=your-token TURSO_ORGANIZATION=your-org node /path/to/mcp-turso-cloud/dist/index.js"
      ]
    }
  }
}

Compare mcp-turso-cloud with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.