Safely read and write multiple SQLite databases for analysis and automation.
This is an open-source local SQLite MCP server with no declared secrets or remote endpoints, so overall risk appears relatively low. However, its core capabilities include local code execution and read/write access to multiple SQLite databases, so data scope should be constrained and the implementation reviewed before use.
The materials explicitly state that no keys or environment variables are required, and no third-party account credentials are requested; credential exposure appears minimal.
No remote host is declared, and the materials do not describe sending data to external services; based on the available information, no clear outbound data path is evident.
The system checks indicate that it executes code; as an MCP server, it typically runs a local process and handles database operations. This is an inherent capability of such tools, so its runtime privileges and boundaries should be monitored, but the materials do not show requests for unusually dangerous system permissions.
The description says it provides read and write access to multiple SQLite databases and supports destructive operations; this means local database contents can be modified or deleted. While it mentions safety features such as parameterized queries and required WHERE clauses for destructive actions, the effective data scope still depends on configuration, so unnecessary sensitive database files should not be exposed.
There is a public open-source repository under the MIT License, making the code in principle auditable, which is a meaningful risk-reducing factor. However, the source is a third-party registry, community adoption is 0 stars, and maintenance status is unknown, so trust and maturity signals are limited; review the code and dependencies before installation.
Copy the install command and let the AI configure it · recommended for beginners
No copy-paste install info for "SQLite MCP Server" yet — see the docs or source repo.
Connect to sales.db and summarize 2024 sales by month and region. Return a result table with month, region, and total_sales, sorted by month ascending and total_sales descending.
A safe query result showing monthly sales totals by region.
In inventory.db, update products with quantity=0 and discontinued=0 to status='out_of_stock'. Use a parameterized query and ensure the UPDATE includes an explicit WHERE clause.
A description of the update operation and the number of affected rows.
Read the schema of app.db. List all tables, each table's column names, column types, and primary keys, and point out foreign key columns that may be missing indexes.
A schema overview with recommendations for possible index improvements.
Interact with SQLite via MCP for CRUD, SQL queries, and schema exploration.
Safely explore SQLite schemas and run read-only queries with AI agents.
Safely query SQLite databases and preview schemas through a standardized MCP interface
Query and manage SQLite databases using natural language through an MCP tool.
Query and update SQLite databases with a local LLM through MCP tools.
Connect to MySQL for safe read-only queries and schema exploration.