MCPNav
S

SQLite

Featured

MCP server · by modelcontextprotocol

Databases
Python
v2025.4.25

Query and inspect SQLite databases locally, including schema exploration and business-intelligence style queries.

Install

Run one of the commands below, then add the client config underneath.

Python
uvx mcp-server-sqlite --db-path /path/to/db.sqlite

Client configuration

Paste into Claude Desktop, Cursor (mcp.json), VS Code or any MCP client, then restart the client.

mcpServers
{
  "mcpServers": {
    "sqlite": {
      "command": "uvx",
      "args": [
        "mcp-server-sqlite",
        "--db-path",
        "/path/to/db.sqlite"
      ]
    }
  }
}

About this server

SQLite is listed in the Databases category of the MCPNav directory. It is distributed as Python and can be loaded by any client that speaks the Model Context Protocol.

Typical uses include giving your assistant scoped access to the corresponding service so it can answer questions and take actions with real data instead of guessing. Always review what a server can access before you enable it — see our MCP security guide.

Frequently asked questions

What is the SQLite MCP server?

SQLite is an MCP server by modelcontextprotocol. Query and inspect SQLite databases locally, including schema exploration and business-intelligence style queries.

How do I install SQLite?

Install it with: uvx mcp-server-sqlite --db-path /path/to/db.sqlite. Then add the JSON config to your client's MCP settings and restart the client.

Is SQLite free to use?

The MCP server itself is free to install. The source is public on https://github.com/modelcontextprotocol/servers. Any third-party API it calls (such as a search or maps API) may require its own key and billing.

Which clients support SQLite?

Any MCP-compatible client can use it, including Claude Desktop, Cursor, VS Code, Windsurf and custom agents.