# SQLite MCP Server
> Package: `@modelcontextprotocol/server-sqlite`
> Tools Exposed: read_query, write_query, list_tables, describe_table
> URL: https://agentnow.in/mcp/sqlite-mcp-server

## Description
Query and inspect local SQLite database files with zero setup.

## Installation CLI
```bash
npx -y @modelcontextprotocol/server-sqlite /path/to/database.db
```

## Claude Desktop Configuration (claude_desktop_config.json)
```json
{
  "mcpServers": {
    "sqlite": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sqlite",
        "/path/to/db.sqlite"
      ]
    }
  }
}
```

## Cursor Configuration (.cursor/mcp.json)
```json
{
  "mcpServers": {
    "sqlite": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sqlite",
        "/path/to/db.sqlite"
      ]
    }
  }
}
```
