by Alien Giraffe (open source) Claude Desktop, Claude Code, OpenCode, любой MCP-клиент, macOS, Linux
Даёт агентам безопасную контейнеризованную SQL-песочницу с доступом через MCP или API на базе DuckDB. Не требует инфраструктуры, быстрый запуск — загрузил CSV, запросил, проанализировал.
Продвинутый MCP-сервер для PostgreSQL: индексные рекомендации, анализ query plans, health check, connection pool tuning — AI-DBA …
Официальный MCP-сервер Supabase: управление проектами, таблицами, Edge Functions, storage и auth прямо из Claude или любого …
MCP-сервер для MySQL: позволяет AI-агентам выполнять запросы, просматривать схему таблиц, исследовать данные и вносить изменения в …
Open-source Text2SQL инструмент: превращает вопросы на естественном языке в SQL через graph-powered понимание схемы базы данных.
brew tap aliengiraffe/spaceship && \ brew install spotdb
This project provides a lightweight, ephemeral data sandbox designed for large language models (LLMs) and agentic workflows. By providing a secure, isolated environment, it allows AI agents and scripts to analyze data without direct access to production databases. This setup prevents accidental data modification, ensures data privacy, and enforces guardrails for safe data exploration.
brew tap aliengiraffe/spaceship && \\
brew install spotdb
spotdb
curl -X POST \
http://localhost:8080/api/v1/upload \
-F "table_name=mytable" \
-F "has_header=true" \
-F "csv_file=@data.csv"
curl -X POST \
http://localhost:8080/api/v1/query \
-H "Content-Type: application/json" \
-d '{"query": "SELECT * FROM mytable LIMIT 10"}'
claude command installed.Then, you can add the spotdb mcp:
claude mcp add spotdb -s user -- npx -y mcp-remote http://localhost:8081/stream
Open the Explorer UI in your browser and upload files and query the data:
open http://localhost:8080/explorer