mcp turso
A Model Context Protocol server that provides Claude access to Turso-hosted LibSQL databases, enabling database table listing, schema retrieval, and SELECT query execution.
A Model Context Protocol server that provides Claude access to Turso-hosted LibSQL databases, enabling database table listing, schema retrieval, and SELECT query execution.
A Model Context Protocol (MCP) server that provides access to the Turso-hosted LibSQL databases. Currently, the server provides the following functionality:
Add this to your claude_desktop_config.json
:
{
"mcpServers": [
"turso": {
"command": "npx",
"args": ["-y", "mcp-turso"],
"env": {
"TURSO_DATABASE_URL": "your_url",
"TURSO_AUTH_TOKEN": "your_token"
}
}
]
}
You will need an existing database to continue. If you don’t have one, create one. To get the database URL via the Turso CLI, run:
turso db show --url <database-name>
Then get the database authentication token:
turso db tokens create <database-name>
Add those values to your configuration as shown above.
The server includes a custom logger for debugging outside of Claude Desktop. By default, this logger writes to <parent-dir>/logs/mcp-turso.log
, where <parent-dir>
is the parent directory of directory containing the mcp-turso
script. In other words, if the path to mcp-turso
is ~/foo/bin/mcp-turso
, the logs will be at ~/foo/logs/mcp-turso.log
. If running with NPX as above, the default logs will be:
~/.npm/_npx/<npx-dir-name>/node_modules/mcp-turso/logs/mcp-turso.log
If you would like to specify a custom path, you can include a --logs
flag with an absolute posix path in the server's configuration:
{
"mcpServers": [
"turso": {
"command": "npx",
"args": ["-y", "mcp-turso", "--logs", "/Users/<username>/path/to/dir/mcp-logs.log"],
"env": {
"TURSO_DATABASE_URL": "your_url",
"TURSO_AUTH_TOKEN": "your_token"
}
}
]
}
The path to the log file (default or custom) is always logged to stderr
when the server is created. For Claude desktop, this will show up in your server logs in ~/Library/Logs/Claude
.
Note: Right now, I haven't implemented specifying a custom logging file for Windows, but this is coming.
The server provides the following tools:
list_tables
get_db_schema
describe_table
View schema information for a specific table
Input: - table_name
(string): Name of table to describe
Returns: Array of column definitions with names and types
query
query
(string): The SELECT SQL query to execute{ columns: string[]; rows: Record<string, unknown>[]; rowCount: number; }
MIT License - see the LICENSE file for details.