CClaude Code Catalog
All MCP Servers

SQLite MCP Server

DatabaseBeginnerTransport: stdio

The SQLite MCP Server provides Claude Code with direct access to SQLite database files for querying, schema inspection, and data analysis. It supports full SQL operations including SELECT, INSERT, UPDATE, and CREATE TABLE, making it suitable for local development databases, application data stores, and analytics workflows. The lightweight setup requires no external database server, just point it at a .sqlite file and start querying.

sqlitedatabaseSQLlocal-db

Installation

claude mcp add sqlite -- npx -y @modelcontextprotocol/server-sqlite /path/to/db.sqlite

Configuration Example

{ "mcpServers": { "sqlite": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sqlite", "/Users/me/data/app.sqlite" ] } } }

Capabilities

Run queries
Create tables
Insert data
List tables
Describe schema
Create indexes
Manage transactions
Database backup

Terminal Preview

SQLite MCP Server

About SQLite MCP Server

MCP (Model Context Protocol) servers connect Claude Code to external tools, APIs, and data sources. SQLite MCP Server is a Database MCP server for Beginner-level users that enables Claude to interact with real-world services, giving it access to live data and the ability to perform actions beyond its built-in capabilities.

Related Servers