run_query
Execute SQL queries against Manticore Search to retrieve data, analyze indexes, and perform read-only operations for search applications.
Instructions
Execute a SQL query against Manticore Search.
Queries run in read-only mode by default. Set MANTICORE_ALLOW_WRITE_ACCESS=true to allow DDL and DML statements when your Manticore server permits them.
Args: query: The SQL query to execute (e.g., "SELECT * FROM my_index LIMIT 10")
Returns: A dictionary containing: - columns: List of column names - rows: List of row values - total: Total number of results
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |