SQLite Explorer MCP Server
@hannesrudolph
关于 SQLite Explorer MCP Server
An MCP server that provides safe, read-only access to SQLite databases through Model Context Protocol (MCP). This server is built with the FastMCP framework, which enables LLMs to explore and query SQLite databases with built-in safety features and query validation.
基本信息
配置
工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is SQLite Explorer MCP Server?
SQLite Explorer MCP Server is a read-only Model Context Protocol server that allows LLMs to explore and query SQLite databases safely. Built with the FastMCP framework, it enforces query validation, parameter binding, and row limits to prevent harmful operations. It is intended for developers who need LLM-driven database inspection without write access.
How to use SQLite Explorer MCP Server?
Clone the repository, install dependencies via pip install -r requirements.txt, set the SQLITE_DB_PATH environment variable to point to a SQLite database file, then install the server using either fastmcp install for Claude Desktop or a JSON configuration for the Cline VSCode plugin. 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
- Clean JSON responses (progress output suppressed)
Use cases of SQLite Explorer MCP Server
- Allow an LLM to list tables in a local SQLite database
- Let an LLM describe a table’s schema (columns, types, constraints)
- Enable safe, read-only SQL querying from an AI assistant
- Integrate SQLite exploration into Claude Desktop or Cline VSCode plugin workflows
FAQ from SQLite Explorer MCP Server
How does SQLite Explorer MCP Server differ from a general SQLite client?
Unlike a general client, it only allows read-only queries and enforces validation, parameter binding, and row limits to protect the database from harmful or accidental writes.
What are the runtime/dependency requirements?
Python 3.6+, the fastmcp and uvicorn packages (installed via requirements.txt), and a path to an existing SQLite database file.
Where does the database data live?
The database file is located on the local filesystem at the path specified by the SQLITE_DB_PATH environment variable.
What are the known limits?
All queries are read-only; write operations (INSERT, UPDATE, DELETE, DDL) are blocked. Query results are capped by a row limit to prevent excessive output.
What transport or authentication does it use?
It uses the standard Model Context Protocol; no authentication is mentioned. Communication is local and configured via MCP settings in Claude Desktop or the Cline VSCode plugin.
数据库 分类下的更多 MCP 服务器
MySQL MCP Server
designcomputerA Model Context Protocol (MCP) server that enables secure interaction with MySQL databases
Meilisearch MCP Server
meilisearchA Model Context Protocol (MCP) server for interacting with Meilisearch through LLM interfaces.
Database Gateway
centralmindUniversal MCP-Server for your Databases optimized for LLMs and AI-Agents.
Neon MCP Server
neondatabase-labsMCP server for interacting with Neon Management API and databases
Neon MCP Server
neondatabaseMCP server for interacting with Neon Management API and databases
评论