Query SQLite databases directly. Perfect for local development, testing, and analyzing SQLite-based applications.
MCP (Model Context Protocol) servers extend Claude's capabilities with external tools and data sources. They provide access to databases, APIs, file systems, and more. Configure MCP servers in .mcp.json or add them via `claude mcp add` command.
Option 1 - CLI Command: claude mcp add sqlite -- npx -y @anthropic-ai/mcp-server-sqlite /path/to/database.db Option 2 - Add to .mcp.json Features: - Execute SQL queries - Inspect table schemas - Analyze data patterns - Read-only mode by default
{
"mcpServers": {
"sqlite": {
"command": "npx",
"args": ["-y", "@anthropic-ai/mcp-server-sqlite", "/path/to/database.db"]
}
}
}Manage Docker containers and images. List, start, stop containers, view logs, and inspect container configurations.