Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-spences10-mcp-sqlite-tools": {
"args": [
"-y",
"mcp-sqlite-tools"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides comprehensive SQLite database operations for LLMs. This server enables AI assistants to interact with local SQLite databases safely and efficiently, with built-in security features, advanced transaction support, and clear separation between read-only and destructive operations.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'mcp-sqlite-tools' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-sqlite-tools against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in data
Zero-dependency, token-efficient database MCP server for Postgres, MySQL, SQL Server, MariaDB, SQLite.
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Manage Supabase projects — databases, auth, storage, and edge functions
A Model Context Protocol server that provides read-only access to MySQL databases. This server enables LLMs to inspect database schemas and execute read-only queries.
MCP Security Weekly
Get CVE alerts and security updates for MCP server for local SQLite database operations and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides comprehensive SQLite database operations for LLMs. This server enables AI assistants to interact with local SQLite databases safely and efficiently, with built-in security features, advanced transaction support, and clear separation between read-only and destructive operations.
This server implements multiple layers of security:
The tools are intentionally separated into distinct categories to enable fine-grained approval control in MCP clients like Claude Code:
✓ SAFE Tools (Read-only operations):
execute_read_query - SELECT, PRAGMA, EXPLAIN querieslist_tables, describe_table, database_infoexport_schema, backup_databaseThese tools can be auto-approved or approved once, allowing the AI to freely explore your database structure and read data.
⚠️ DESTRUCTIVE Tools (Data modification):
execute_write_query - INSERT, UPDATE, DELETEbulk_insert - Batch insertionsimport_csv - CSV data importdrop_table - Permanent table deletionThese tools should require individual approval for each operation, giving you visibility into what data will be modified before it happens.
⚠️ SCHEMA CHANGE Tools (Structure modification):
execute_schema_query - CREATE, ALTER, DROP statementscreate_table - Table creationimport_schema - Schema importimport_csv - Can create missing tables from CSV headersThese tools modify database structure and should require individual approval to prevent unintended schema changes.
⚠️ FILE WRITE Tools:
export_csv - Writes CSV files, including absolute paths🔒 TRANSACTION Tools: