td_find_project
Search for Treasure Data projects by name or keywords to retrieve project IDs and metadata. Use exact or fuzzy matching to find projects when you need IDs for operations like downloading archives.
Instructions
Find project by name when you don't know the exact ID.
Searches all projects and returns matches. Useful when you know project
name but need the ID for other operations like downloading archives.
Common scenarios:
- User mentions project name, need to find ID
- Looking for projects containing specific keywords
- Getting project ID before using td_download_project_archive
- Finding multiple projects with similar names
Use exact_match=True for precise name matching, False for fuzzy search.
Returns project IDs, names, and metadata for all matches.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exact_match | No | ||
search_term | Yes |
Input Schema (JSON Schema)
{
"properties": {
"exact_match": {
"default": false,
"title": "Exact Match",
"type": "boolean"
},
"search_term": {
"title": "Search Term",
"type": "string"
}
},
"required": [
"search_term"
],
"type": "object"
}