← Back to registry

TOOL · memento_query

No description provided.

Canonical Definition

{
  "function": {
    "description": "Query a connected app's database via Memento to retrieve REAL data. Use this when the user asks about providers, services, clients, contracts, pricing, stocks, market research, or any business data. ALWAYS use this tool to check real data instead of making up information.\n\nAPP SLUG GUIDE (use these exact slugs):\n- 'latinos' → stock research, market analysis, trading bots, financial studies, stock_research table\n- 'vetra' → contracts, signatories, blockchain proofs, legal documents\n- 'movilo' → providers, medical services, affiliations, health plans\n- 'garcero' → ranches, animals, paddocks, genealogy, livestock\n\nThe full database schema (tables and columns) is provided in the system prompt context — use those exact table and column names.",
    "name": "memento_query",
    "parameters": {
      "properties": {
        "app": {
          "description": "The app slug to query. Use the APP SLUG GUIDE above. For stock/market/financial data use 'latinos'. For contracts use 'vetra'. For providers use 'movilo'. For ranch/animal data use 'garcero'.",
          "enum": [
            "latinos",
            "vetra",
            "movilo",
            "garcero"
          ],
          "type": "string"
        },
        "query": {
          "description": "A SQL SELECT query to run against the app's database. ONLY SELECT queries are allowed. Use the exact table and column names from the auto-discovered schema in your system prompt.",
          "type": "string"
        }
      },
      "required": [
        "app",
        "query"
      ],
      "type": "object"
    }
  },
  "type": "function"
}