MCP.so
ログイン

MCP SQLite Server

@MCP-Mirror

MCP SQLite Server について

Mirror of

基本情報

カテゴリ

データベース

トランスポート

stdio

公開者

MCP-Mirror

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "johnnyoshika_mcp-server-sqlite-npx": {
      "command": "npx",
      "args": [
        "-y",
        "@smithery/cli",
        "install",
        "mcp-server-sqlite-npx",
        "--client",
        "claude"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is MCP SQLite Server?

A Node.js implementation of the Model Context Protocol (MCP) SQLite server. It provides an npx-based alternative to the official Python reference, designed for environments (such as LibreChat) where Python’s UVX runner is not available.

How to use MCP SQLite Server?

Install automatically via Smithery: npx -y @smithery/cli install mcp-server-sqlite-npx --client claude. Or manually add the server to your claude_desktop_config.json with the absolute paths to npx, the server package, and your SQLite database file. For development, run npm ci and npm run build, then test with the MCP Inspector tool.

Key features of MCP SQLite Server

  • npx‑based, no Python/UVX dependency
  • Works with Claude Desktop and other MCP clients
  • Runs on local SQLite databases via a file path argument
  • Built on the official MCP SQLite schema
  • Supports testing with the MCP Inspector

Use cases of MCP SQLite Server

  • Querying a local SQLite database through Claude Desktop’s chat interface
  • Using a SQLite knowledge base with an LLM assistant in LibreChat
  • Integrating structured data queries into any MCP‑compatible application

FAQ from MCP SQLite Server

How does this compare to the official Python SQLite MCP server?

It is a Node.js implementation that can be run via npx, useful when Python and the UVX runner are not available (e.g., in LibreChat).

What runtime dependencies are required?

Node.js and npx. The README examples use Node v20 and v22.

Where is the database data stored?

Data is stored in the SQLite database file at the absolute path you provide as the last argument to the server.

How do I test the server before using it in Claude Desktop?

Use the MCP Inspector: run npx @modelcontextprotocol/inspector node dist/index.js /absolute/path/to/database.db then connect and open the Tools tab.

コメント

「データベース」の他のコンテンツ