td_get_project_by_name
Retrieve complete project details using the exact project name instead of requiring the project ID. This combines find and get operations into a single step for immediate access to project metadata, revision information, and timestamps.
Instructions
Get full project details using exact name instead of ID.
Convenient shortcut when you know the exact project name.
Combines find + get operations for immediate detailed results.
Common scenarios:
- User provides exact project name, need full details
- Quick project metadata lookup by name
- Avoiding two-step process (find ID then get details)
- Getting revision/timestamps for known project
Requires exact name match. For fuzzy search use td_find_project.
Returns same details as td_get_project but using name lookup.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_name": {
"title": "Project Name",
"type": "string"
}
},
"required": [
"project_name"
],
"type": "object"
}