SQLite Explorer MCP Server
@MCP-Mirror
About SQLite Explorer MCP Server
Mirror of
Basic information
Config
No standard config provided
This server doesn't expose a parseable MCP config block in its README. See the repository for install instructions.
RepositoryTools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is SQLite Explorer MCP Server?
An MCP server that provides safe, read-only access to SQLite databases through the Model Context Protocol. Built with the FastMCP framework, it enables LLMs to explore and query SQLite databases with built-in safety features and query validation.
How to use SQLite Explorer MCP Server?
Clone the repository, install dependencies via pip install -r requirements.txt, then set the environment variable SQLITE_DB_PATH to your SQLite database path. Install for Claude Desktop with fastmcp install sqlite_explorer.py --name "SQLite Explorer" -e SQLITE_DB_PATH=/path/to/db, or configure it for the Cline VSCode plugin by editing MCP settings. The server exposes three tools: read_query, list_tables, and describe_table.
Key features of SQLite Explorer MCP Server
- Read-only access to SQLite databases.
- Query validation and sanitization.
- Parameter binding for safe query execution.
- Row limit enforcement.
- List all tables and describe table schemas.
- Clean JSON output with suppressed progress messages.
Use cases of SQLite Explorer MCP Server
- LLM-driven exploration of a local SQLite database.
- Retrieving table schemas and sample data without write risk.
- Running safe SELECT queries from an AI assistant in Claude Desktop or Cline.
- Automating database inspection during development or debugging.
FAQ from SQLite Explorer MCP Server
What are the system requirements?
Python 3.6+ and a SQLite database file specified via the environment variable SQLITE_DB_PATH.
How do I install the server for Claude Desktop?
Run fastmcp install sqlite_explorer.py --name "SQLite Explorer" -e SQLITE_DB_PATH=/path/to/db, replacing the path with your database file.
How do I install the server for the Cline VSCode plugin?
Add a JSON configuration to the Cline MCP settings with the command uv and arguments pointing to sqlite_explorer.py, and set the SQLITE_DB_PATH environment variable.
Is the server read-only?
Yes, the server provides read-only access to SQLite databases. All queries are validated and row limits are enforced.
What dependencies are needed?
The server requires the fastmcp package and other dependencies listed in requirements.txt. Install them all with pip install -r requirements.txt.
More Databases MCP servers
Dbhub
bytebaseZero-dependency, token-efficient database MCP server for Postgres, MySQL, SQL Server, MariaDB, SQLite.

Redis
modelcontextprotocolModel Context Protocol Servers
MySQL MCP Server
designcomputerA Model Context Protocol (MCP) server that enables secure interaction with MySQL databases

PostgreSQL
modelcontextprotocolModel Context Protocol Servers
Chroma MCP Server
chroma-coreA Model Context Protocol (MCP) server implementation that provides database capabilities for Chroma
Comments