Tool Reference
atoms_search
Full-text search across items in a project
Perform a full-text search across all items in a project. Searches across title, body, and summary fields, with results ranked by relevance.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
project_id | string (UUID) | Yes | The project to search in |
query | string | Yes | Search text (1-1000 characters) |
type | string | No | Filter results by item type: requirement, test-case, note, or table |
limit | number | No | Max results (1-100). Default: 25 |
Example Response
{
"status": "success",
"data": [
{
"id": "REQ-045",
"type": "requirement",
"title": "Braking system shall engage within 200ms",
"summary": "Emergency braking response time requirement",
"domains": ["safety"],
"level": "System"
},
{
"id": "TC-078",
"type": "test-case",
"title": "Measure braking response latency under load",
"summary": "Verify braking engages within 200ms at full vehicle load",
"domains": ["safety"],
"level": "System"
}
],
"meta": {
"total_count": 2,
"limit": 25
}
}Notes
- This tool is read-only and does not modify any data (
readOnlyHint: true). - The search matches against
title,body, andsummaryfields simultaneously. - Results are ranked by relevance to the query, with the best matches returned first.
- Use the optional
typefilter to scope results to a specific item type, for example onlyrequirementitems. - For browsing without a search term, use
atoms_list_itemsinstead.