Skip to content
VS Code

mcp turso cloud for VS Code

io.github.spences10/mcp-turso-cloud

MCP server for integrating Turso with LLMs

client:VS Code transport:stdio runtime:npm

Install mcp turso cloud in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "turso-api-token",
      "description": "TURSO_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "turso-organization",
      "description": "TURSO_ORGANIZATION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "turso-default-database",
      "description": "TURSO_DEFAULT_DATABASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "token-expiration",
      "description": "TOKEN_EXPIRATION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "token-permission",
      "description": "TOKEN_PERMISSION",
      "password": true
    }
  ],
  "servers": {
    "mcp-turso-cloud": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-turso-cloud"
      ],
      "env": {
        "TURSO_API_TOKEN": "${input:turso-api-token}",
        "TURSO_ORGANIZATION": "${input:turso-organization}",
        "TURSO_DEFAULT_DATABASE": "${input:turso-default-database}",
        "TOKEN_EXPIRATION": "${input:token-expiration}",
        "TOKEN_PERMISSION": "${input:token-permission}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp turso cloud in other clients