list_available_sql_tables
Retrieve a list of available Parquet files for SQL queries on Cryo MCP Server. Each entry includes file paths, dataset types, and metadata to use in SQL queries with query_sql().
Instructions
List all available parquet files that can be queried with SQL
USAGE NOTES:
- This function lists parquet files that have already been downloaded
- Each file can be queried using read_parquet('/path/to/file.parquet') in your SQL
- For each file, this returns the file path, dataset type, and other metadata
- Use these file paths in your SQL queries with query_sql()
Returns:
List of available files and their metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No arguments |
Input Schema (JSON Schema)
{
"properties": {},
"title": "list_available_sql_tablesArguments",
"type": "object"
}