Loading...
pip install -r{
"sqlite-explorer": {
"command": "uv",
"args": [
"run",
"--with",
"fastmcp",
"--with",
"uvicorn",
"fastmcp",
"run",
"/path/to/repo/sqlite_explorer.py"
],
"env": {
"SQLITE_DB_PATH": "/path/to/your/database.db"
}
}
}read_queryExecutes a SELECT query on the database with safety validations and returns results as dictionaries.
Read-only operation with query validation.
list_tablesLists all available tables in the database.
Read-only operation listing table names.
describe_tableProvides detailed schema information for a specified table, including column names and types.
Read-only operation describing table schema.
This server is generally safe for read-only exploration of SQLite databases due to built-in query validation and sanitization. However, ensure the `SQLITE_DB_PATH` environment variable is correctly configured and the database contains no sensitive information that could be exposed through schema exploration.