MCP.so
登录

SQLite Explorer MCP Server

@MCP-Mirror

关于 SQLite Explorer MCP Server

Mirror of

基本信息

分类

数据库

传输方式

stdio

发布者

MCP-Mirror

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

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.

评论

数据库 分类下的更多 MCP 服务器