mcp-turso-cloud
by spences10·★ 15·Score 42
A well-documented MCP server for Turso database integration with dual authentication and query separation.
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:
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 READMElist_databasesLists all databases in your Turso organization.
create_databaseCreates a new database in your organization.
delete_databaseDeletes a database from your organization.
generate_database_tokenGenerates a new token for a specific database.
list_tablesLists all tables in a database.
execute_read_only_queryExecutes a read-only SQL query (SELECT, PRAGMA) against a database.
execute_queryExecutes a potentially destructive SQL query (INSERT, UPDATE, DELETE, CREATE, etc.) against a database.
describe_tableGets schema information for a table.
vector_searchPerforms vector similarity search using SQLite vector extensions.
Comparable tools
Installation
Installation
- Install via npm:
npm install -g mcp-turso-cloud- 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"
}
}
}
}- 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
Last updated · Auto-generated from public README + GitHub signals.