Local SQLite database interaction with full CRUD operations
The SQLite MCP Server provides local SQLite database interaction with full CRUD operations. Your AI assistant can create databases, define tables, insert data, run queries, and manage schemas on local SQLite files.
Part of the official MCP reference servers, this server makes it easy to work with SQLite databases for prototyping, local data storage, and application development. It supports all standard SQL operations on local database files.
Great for rapid prototyping, local data analysis, and working with embedded databases without needing a separate database server.
Official reference server for local SQLite databases. No network access required. File-based access control.
4 files analyzed · 2 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"sqlite": {
"command": "uvx",
"args": [
"mcp-server-sqlite",
"--db-path",
"/path/to/database.db"
],
"env": {}
}
}
}Be the first to review this server!
Added support for streaming responses and improved error handling for rate-limited requests.
Major release: new tool registration API, breaking changes to configuration format. See migration guide.
Added OAuth 2.0 support and improved connection pooling.
Initial stable release.