SQLite MCP Server
by Anthropic ยท โญ 1.9k stars ยท updated 3 months ago
SQLite database interaction and business intelligence. Query databases, create tables, run analytics, and explore data through natural language with your AI assistant.
87
Very Good
Quality Score Breakdown
maintenance88/100
community85/100
documentation88/100
compatibility87/100
Use Cases
- โquery SQLite databases
- โrun SQL
- โdata analytics
- โcreate tables
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"sqlite": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sqlite",
"--db-path",
"/path/to/database.db"
]
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"sqlite": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sqlite",
"--db-path",
"/path/to/database.db"
]
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"sqlite": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sqlite",
"--db-path",
"/path/to/database.db"
]
}
}
}
}