MCP SQLite Server

by kelnishi

303 downloads
Not rated
GitHub

About

TypeScript implementation of the Sqlite MCP Server

Details

Author
kelnishi
Downloads
303
Categories
Database

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name MCP SQLite Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

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.

query

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

schema

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

table_info

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

explain

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

list_databases

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

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

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

McpServers

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

MCP SQLite Server

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

Installation

npx mcp-sqlite-server ./sqlite.db
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.