The official SQLite MCP server provides full read-write access to SQLite databases.
uvx mcp-server-sqlite --db-path /path/to/db.sqlite
{
"mcpServers": {
"sqlite": {
"args": [
"mcp-server-sqlite",
"--db-path",
"/path/to/db.sqlite"
],
"command": "uvx"
}
}
}List all tables in the SQLite database
{
"type": "object",
"properties": {}
}// Input
{}// Output
{
"tables": [
"users",
"orders"
]
}Execute a SELECT query on SQLite
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string"
}
}
}// Input
{
"query": "SELECT * FROM cities LIMIT 5"
}// Output
{
"rows": [
{
"name": "Tokyo",
"population": 13960000
}
]
}Execute INSERT/UPDATE/DELETE on SQLite
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string"
}
}
}The official SQLite MCP server provides full read-write access to SQLite databases.
SQLite provides 3 tools including list_tables, read_query, write_query.
Yes, SQLite is completely free to use with no usage limits on the free tier.
You can install SQLite using the following command: uvx mcp-server-sqlite --db-path /path/to/db.sqlite. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
// Input
{
"query": "INSERT INTO notes VALUES(1,'test')"
}// Output
{
"changes": 1
}SQLite is listed under the Data & Analytics category in the AgentForge MCP registry.
SQLite has a current uptime of 99.99% with an average response time of 8ms.
To connect SQLite, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of SQLite's tools via the Model Context Protocol.