This is a Model Context Protocol (MCP) server that provides access to a SQLite database. It allows AI assistants (like Trae) to query and modify SQLite databases directly.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"sqlite_mcp_server": {
"command": "uvx",
"args": [
"sqlite-mcp-server"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add sqlite_mcp_server uvx sqlite-mcp-server
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"sqlite_mcp_server": {
"command": "uvx",
"args": [
"sqlite-mcp-server"
]
}
}
}
📋 Copy
Or install with pip: pip install sqlite-mcp-server