saved_queries
Save, run, list, or delete your reusable SELECT queries. Organize your personal query library for quick access and execution.
Instructions
Manage your personal library of reusable SELECT queries. action=save stores a query by name; action=run executes a saved query; action=list returns all your saved queries; action=delete removes one. [BUILD tier]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- bin/server.js:113-118 (registration)The 'saved_queries' tool is registered in the TOOLS array with its name, description, and input schema. However, this file is a static local adapter that only redirects to the hosted endpoint; no actual handler logic exists here. The real handler resides on the hosted production server at https://data.thinair.co/mcp.
{ name: "saved_queries", description: "Manage your personal library of reusable SELECT queries. action=save stores a query by name; action=run executes a saved query; action=list returns all your saved queries; action=delete removes one. [BUILD tier]", inputSchema: { type: "object" }, },