
SQLite MCP Server
Supports UIby stackloklabs
Standardized MCP server for querying SQLite databases, allowing LLMs to interact with local database files safely.
What it does
This MCP server provides a standardized bridge for LLMs to interact with SQLite databases. It allows AI assistants to explore database schemas, list tables, and execute both read and write queries, transforming a local SQLite file into a queryable knowledge base for the AI.
Tools
- execute_query: Execute SELECT queries against the SQLite database to retrieve data.
- execute_statement: Execute INSERT, UPDATE, or DELETE statements (requires read-write mode).
- list_tables: List all tables present in the connected database.
- describe_table: Get the schema and column information for a specific table.
Installation
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"sqlite-mcp": {
"command": "/path/to/sqlite-mcp",
"args": ["-db", "/path/to/database.db"]
}
}
}
Supported hosts
- claude
Quick install
go build -o sqlite-mcp .Information
- Pricing
- free
- Published
- 5/31/2026
- stars






