get_query_history
Retrieve the history of executed queries from the CockroachDB MCP Server. Specify a limit to return the most recent queries for monitoring or analysis.
Instructions
Get the history of executed queries.
Args: limit (int): Number of recent queries to return (default: 10).
Returns: A list of the last executed queries.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
}
},
"title": "get_query_historyArguments",
"type": "object"
}