T
Turso
Query Turso libSQL edge databases.
·No reviews yet
Share:
About
Auto-generated
Turso is a Model Context Protocol server in the Data & Databases category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Turso.
- What is the Turso MCP used for?
- The Turso MCP enables interaction with libSQL edge databases hosted on Turso. This allows developers to query and manage their Turso databases directly through an MCP client.
- How do I configure Turso in an MCP client like Cursor?
- Configuration typically involves adding a new MCP server in the client's settings. You would provide the Turso MCP's transport (stdio) and any required credentials, such as an API key, as directed by the client interface.
- Does the Turso MCP require an API key for authentication?
- Yes, the Turso MCP uses an API key for authentication. You will need to provide a valid Turso API key to establish a connection and interact with your databases.
- What kind of capabilities does the Turso MCP expose?
- The Turso MCP primarily exposes capabilities for querying and managing Turso libSQL edge databases. Specific tools and operations depend on the implementation within the MCP client.
- Is there a cost associated with using the Turso MCP?
- The Turso MCP itself is open-source and community-provided. Any costs would be associated with the underlying Turso database service plan you choose for your edge databases.
- What is a prerequisite for using the Turso MCP?
- A prerequisite for using the Turso MCP is having an active Turso account and at least one libSQL edge database provisioned. You also need a valid API key from your Turso account.
Install Turso
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"turso": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-turso"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"turso": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-turso"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"turso": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-turso"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.