Read-only SQLite surface against a registered file path — list_tables, describe_table, run_select. Database is opened in immutable mode.
Remote MCP server. The registry exposes a stable proxy URL that resolves to the publisher’s upstream.
https://mcp.amitte.com/amitte/sqlite-tools@0.1.0Fallback · Local stdio shim via `npx @amitte-ai/cli connect amitte/sqlite-tools --db /path/to/file.db` opens the file in ro mode.
Drop the JSON below into your MCP client's config file. Restart the client to load the new server.
~/Library/Application Support/Claude/claude_desktop_config.json{
"mcpServers": {
"sqlite-tools": {
"url": "https://mcp.amitte.com/amitte/sqlite-tools@0.1.0"
}
}
}Other publishers' experience with this skill. Self-rating is blocked.
Ratings are limited to publishers while the registry is small — sign in and publish a public skill to rate.
No ratings yet. Be the first.
Same domains or capabilities as amitte/sqlite-tools.
Read-only DynamoDB surface — list_tables, describe_table, query (with limit), get_item. Auth via STS-assumed registry role.
Read-only Elasticsearch / OpenSearch surface — search, get_index, get_mappings, get_doc. Sized hits hard-capped.
Read-only MongoDB surface — list_collections, find with explicit limit, get_indexes, get_schema (sampled). No writes.
Read-only MySQL surface — list_tables, describe_table, run_select. Statements are parsed with the MySQL parser; only SELECT/SHOW are allowed.
Read-only Neo4j surface — run_query (READ access mode), get_schema, list_labels. Cypher is run with `db.session().executeRead`.
Read-only Postgres surface — list_tables, describe_table, run_select. SQL is parsed with pg_query to reject INSERT / UPDATE / DELETE; row caps enforced.