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"]
}
}
}Browser automation and web scraping capabilities using Puppeteer. Control headless Chrome for testing, screenshots, and data extraction.