Local MCP server for SQLite databases — query, manage schema, tables, indexes, and transactions through 15 tools. Install locally via npx only — each user gets their own database. Features: - Execute SQL queries and statements with parameter binding - Full schema management (tables, columns, indexes, foreign keys) - Database analysis (size, table stats, integrity check) - WAL mode enabled for better concurrency Install (Claude Desktop / Cursor): npx -y @node2flow/sqlite-mcp Tool categories: - Query (3): execute_query, execute_run, execute_many - Schema (4): list_tables, describe_table, list_indexes, list_foreign_keys - Table (3): create_table, alter_table, drop_table - Index (2): create_index, drop_index - Database (3): get_info, vacuum, integrity_check Configuration: - SQLITE_DB_PATH (required) — Path to your local SQLite database file - SQLITE_TIMEOUT (optional) — Busy timeout in milliseconds (default: 5000) Note: This is a local-only tool. Install via npx to use your own database files.
How to connect
https://server.smithery.ai/node2flow/sqlite/mcp
curl -X POST https://server.smithery.ai/node2flow/sqlite/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}'