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.
Add this to your MCP configuration file:
{
"mcpServers": {
"sqlite": {
"env": {},
"args": [
"mcp-server-sqlite",
"--db-path",
"/path/to/database.db"
],
"command": "uvx"
}
}
}Be the first to review this server!