This MCP server, developed by Hannes Rudolph, provides safe read-only access to SQLite databases for AI assistants. Built with FastMCP, it exposes tools for executing validated SELECT queries, listing tables, and describing table schemas. The implementation stands out with its focus on security, featuring query sanitization, parameter binding, and row limit enforcement. By connecting AI capabilities with local SQLite data sources, this server enables AI systems to explore and analyze structured data while maintaining strict safety controls. It is particularly useful for scenarios requiring AI-assisted data exploration, report generation, or insights extraction from SQLite databases, without risking data integrity or exposing sensitive information.
No reviews yet. Be the first to review!
Sign in to join the conversation
Execute a SELECT query on the database with built-in safety validations. Supports query validation, parameter binding, row limit enforcement, and formats results as dictionaries.
List all available tables in the database with their names.
Get detailed schema information for a specific table, including column names, types, NULL constraints, default values, and primary key information.