td_smart_search
Search across Treasure Data projects, workflows, and tables using smart ranking to find relevant data assets and resources based on keywords or topics.
Instructions
Universal search across Treasure Data - best for broad queries.
One-stop search for projects, workflows, and tables with smart ranking.
Use when unsure what resource type you're looking for or need comprehensive results.
Common scenarios:
- "Find anything related to customer analytics"
- Discovering resources around a topic/keyword
- Broad exploration of available data assets
- Finding resources when type is unknown
- Cross-resource impact analysis
Search modes:
- exact: Precise string matching only
- fuzzy: Partial matches and substrings (default)
- semantic: Word-based matching for concepts
Scopes: "all", "projects", "workflows", "tables"
Returns ranked results with relevance scores (0-1).
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| active_only | No | ||
| min_relevance | No | ||
| query | Yes | ||
| search_mode | No | fuzzy | |
| search_scope | No | all | 
Input Schema (JSON Schema)
{
  "properties": {
    "active_only": {
      "default": true,
      "title": "Active Only",
      "type": "boolean"
    },
    "min_relevance": {
      "default": 0.7,
      "title": "Min Relevance",
      "type": "number"
    },
    "query": {
      "title": "Query",
      "type": "string"
    },
    "search_mode": {
      "default": "fuzzy",
      "title": "Search Mode",
      "type": "string"
    },
    "search_scope": {
      "default": "all",
      "title": "Search Scope",
      "type": "string"
    }
  },
  "required": [
    "query"
  ],
  "type": "object"
}