# amitte/sqlite-tools

> Read-only SQLite surface against a registered file path — list_tables, describe_table, run_select. Database is opened in immutable mode.

## Identity

- **Type:** mcp-server
- **Version:** 0.1.0
- **Trust tier:** official
- **License:** Apache-2.0
- **Authors:** Amitte Maintainers
- **Repo / bundle:** amitte/showcase
- **Canonical URL:** https://amitte.com/s/amitte/sqlite-tools

## Tags

- **Capabilities:** tables-list, table-describe, select-only
- **Domains:** databases, sql, embedded

## Evaluation

- **Adversarial score:** 95/100
- **Content score:** 82/100

## Endpoints

- **service-backed** `sqlite-tools` → https://mcp.amitte.com/v1/sqlite-tools/sse — Remote MCP server that opens registered SQLite database files in URI immutable mode. Compatible with Claude Desktop, Cursor, VS Code.
  - tool: `list_tables` — Read-only. List tables in the registered database (sqlite_master); returns name and type.
  - tool: `describe_table` — Read-only. PRAGMA table_info + foreign-key info for a table.
  - tool: `run_select` — Read-only. Execute a SELECT / WITH-only statement. The connection is opened with `mode=ro&immutable=1` so writes can't sneak through.

## Programmatic access

- Fetch JSON-RPC: `POST https://registry.amitte.com/rpc` with `{ "method": "fetch", "params": { "id": "amitte/sqlite-tools" } }`
- Install via CLI: `amitte install amitte/sqlite-tools`
- HTML page: https://amitte.com/s/amitte/sqlite-tools

Last updated: 2026-06-27T00:07:41.914Z