MCP.so
Sign In

MCP SQLite Server

@kelnishi

About MCP SQLite Server

TypeScript implementation of the Sqlite MCP Server

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "mcp-sqlite-ts": {
      "command": "npx",
      "args": [
        "mcp-sqlite-server",
        "./sqlite.db"
      ]
    }
  }
}

Tools

5

Execute a SQL query against a SQLite database. Returns results as a formatted table. Read-only by default.

Get the schema of a SQLite database: all tables with columns and row counts.

Get detailed info about a single table: columns, types, constraints, and row count.

Explain the query plan for a SQL query (EXPLAIN QUERY PLAN). Helps optimize queries.

List all SQLite database files (.db, .sqlite, .sqlite3) in a directory.

Overview

What is MCP SQLite Server?

A Model Context Protocol (MCP) server for SQLite interactions. It allows Claude and other MCP-enabled AI models to interact with an SQLite database.

How to use MCP SQLite Server?

Install and run via npx with the command: npx mcp-sqlite-server ./sqlite.db. Provide the path to an SQLite database file as the argument.

Key features of MCP SQLite Server

Use cases of MCP SQLite Server

FAQ from MCP SQLite Server

Comments

More Databases MCP servers