Execute SQL queries, manage databases, and inspect schema on Turso edge SQLite databases.
25+ deploysclaude mcp add turso --url https://datafaucet.dev/api/mcp/t/turso
Run this command in your terminal · most users connect in under 60s
execute_sql
Execute a SQL statement (SELECT, INSERT, UPDATE, DELETE). Returns rows with column names and values.
https://{database_url}/v2/pipeline
turso_list_tables
List all tables in the database with their CREATE TABLE statements (schema inspection).
https://{database_url}/v2/pipeline
describe_table
Get column definitions for a table (name, type, notnull, default value, primary key flag).
https://{database_url}/v2/pipeline
list_indexes
List all indexes on a table. Returns index names for schema inspection.
https://{database_url}/v2/pipeline
count_rows
Get row count for a table. Quick way to check table size without fetching data.
https://{database_url}/v2/pipeline
query_table
Select rows from a table with pagination. Returns all columns with LIMIT/OFFSET support.
https://{database_url}/v2/pipeline
Run this in your terminal:
claude mcp add turso https://datafaucet.dev/api/mcp/t/turso
Connect Turso (LibSQL) to your AI agent in under 60 seconds. No account required.
{notion_token}) with your real credentialsNeed API keys? Try our free sandbox templates first to see MCP in action with zero setup.
Replace these placeholders with your real values before deploying:
{database_url}Database/workspace ID{limit}Your value{offset}Your value{sql}Your value{table_name}Your value{turso_token}API settings pagePreview:
POST https://{database_url}/v2/pipeline Authorization: Bearer {turso_token} Content-Type: application/json {"requests":[{"type":"execute","stmt":{"sql":"{sql}"}}]}
claude mcp add turso --url https://datafaucet.dev/api/mcp/t/tursoWhat your AI agent sees
I have access to 6 tools from Turso (LibSQL): execute_sql, turso_list_tables, describe_table, and 3 more.
“Execute a SQL statement (SELECT, INSERT, UPDATE, DELETE). Returns rows with column names and values.”
Calling execute_sql... Done. Here are the results.
Try these prompts
“List all tables in my database and show their schemas”
Copy“Run a SELECT query to find users who signed up in the last 7 days”
Copy“Count the rows in the orders table and describe its columns”
CopyClick any prompt to copy, then paste into your AI client.