LiteScope for VS Code
io.github.croc100/litescope
Operations toolchain for SQLite, Cloudflare D1 & Turso: inspect, diff, migrate, monitor & repair.
client:VS Code
transport:stdio
runtime:npm
Install LiteScope in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cloudflare-api-token",
"description": "CLOUDFLARE_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "cloudflare-account-id",
"description": "CLOUDFLARE_ACCOUNT_ID",
"password": true
}
],
"servers": {
"litescope": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"litescope"
],
"env": {
"CLOUDFLARE_API_TOKEN": "${input:cloudflare-api-token}",
"CLOUDFLARE_ACCOUNT_ID": "${input:cloudflare-account-id}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs