Sqlite Npx MCP Server

`~/Library/Application Support/Claude/claude_desktop_config.json`

Local serverstdioPython

What is the Sqlite Npx MCP server?

~/Library/Application Support/Claude/claude_desktop_config.json. The sqlite npx mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 1 defined tool rather than through you.

Its toolset

Everything the assistant can do here goes through one of these:

  • Publish — The Publish tool exposed by this server

Configuration

You will need one environment variable: NODE_PATH. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

The server ships on npm as @smithery/cli, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

When to reach for it

Among the database access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Sqlite Npx's toolset — Publish — is a fair guide to whether it matches your workflow. It is maintained by johnnyoshika; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Sqlite Npx's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the sqlite npx mcp server does with a few real requests.

Available tools

ToolWhat it does
PublishThe Publish tool exposed by this server.

How to install the Sqlite Npx MCP server

{
  "mcpServers": {
    "sqlite": {
      "command": "/absolute/path/to/npx",
      "args": [
        "-y",
        "mcp-server-sqlite-npx",
        "/absolute/path/to/database.db"
      ],
      "env": {
        "PATH": "/absolute/path/to/executables",
        "NODE_PATH": "/absolute/path/to/node_modules"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
NODE_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use Sqlite Npx to Publish.

Frequently asked questions

It connects Sqlite Npx to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (Publish) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Sqlite Npx directly.