SQLite MCP Server
Overview
SQLite MCP Server is a Model Context Protocol (MCP) server that provides SQLite database operations through a standardized interface.
To use SQLite MCP Server, you can either run it locally by installing dependencies and starting the server, or deploy it using Docker or Nixpacks for easy setup.
- In-memory SQLite database with configurable file-based storage - Supports SQL operations: SELECT, INSERT, UPDATE, DELETE - Table management capabilities: CREATE, LIST, DESCRIBE - Business insights memo tracking - Docker support for easy deployment
- Managing user data in applications
- Performing CRUD operations on SQLite databases
- Tracking business insights and analytics
Add to your AI client
Use these steps to connect SQLite MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"sqlite-mcp-server-isaacgounton": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sqlite-mcp-server-isaacgounton"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"sqlite-mcp-server-isaacgounton": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sqlite-mcp-server-isaacgounton"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"sqlite-mcp-server-isaacgounton": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sqlite-mcp-server-isaacgounton"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"sqlite-mcp-server-isaacgounton": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sqlite-mcp-server-isaacgounton"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"sqlite-mcp-server-isaacgounton": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sqlite-mcp-server-isaacgounton"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"sqlite-mcp-server-isaacgounton": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sqlite-mcp-server-isaacgounton"
]
}
}
}FAQ
Can I use SQLite MCP Server for production applications?
Yes! It is designed for both development and production use.
Is there support for remote connections?
Yes! You can connect using SSE for remote operations.
How do I deploy SQLite MCP Server?
You can deploy it using Docker or Nixpacks with minimal configuration.