MCP server for SQLite databases. Connects to local SQLite files (read-only by default) and provides query, schema inspection, EXPLAIN, and list-databases tools via the Model Context Protocol. v1.0.1, actively maintained. Differentiators: TypeScript-native + zero-config npx execution (no Python required unlike the official reference server). Works in Claude Desktop, Cursor, VS Code Copilot, and any MCP client. Supports safety mode (readonly=true) and opt-in write mode.
npm install mcp-sqlite-serverNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to start the MCP server via npx and interact with its tools (list_databases, query) from any MCP client.
Set "readonly": false in the tool call arguments or configure the server with --readonly=false startup flag.
Use --path <path-to-db-or-directory> when starting the server.
Update your MCP client configuration to use the command: npx mcp-sqlite-server (the new package name).
Start the server with: npx mcp-sqlite-server --path ./my.db
Set readonly=false in the tool's arguments to allow write operations.
Verify the path and ensure the file exists. Use list_databases tool to discover files.
No dependency data recorded yet.