find_jama_project_by_name
Find Jama projects by a full or partial name to retrieve their numeric ID and metadata, enabling subsequent operations like listing releases or test runs.
Instructions
Find Jama projects by name (case-insensitive) and return their info.
Useful when you only know a project's name (or a fragment of it) and need
its numeric id to feed into other tools (init_jama_project,
list_jama_releases, list_jama_test_runs, …). Matching is substring by
default; pass exact=True for full case-insensitive equality.
Args:
name: project name or fragment (e.g. "acre" matches "Acrelec").
exact: if True, require full case-insensitive name equality.
limit: max matches to return (default 20).
Returns:
{"count","results":[{id,project_key,name,status,description}, ...]}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| exact | No | ||
| limit | No |