Search pipelines MCP tool
Searches GovTribe pipelines and returns pipeline records with owners, stages, and URLs.
- MCP tool name:
Search_Pipelines - Data type: Pipeline data type
- Returns: Pipeline MCP response
- Search modes: Keyword
- Annotations: Read only, not destructive, idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP, GovTribe Compact MCP server (through Invoke Search Tool)
Examples
Use these examples as task-shaped tool calls. Examples may combine query, search_mode, filters, sorting, returned fields, resolver calls, and aggregations. When an example resolves a related record first, pass the returned govtribe_id into the target search.
Which pipelines mention facility modernization?
{
"tool": "Search_Pipelines",
"arguments": {
"query": "facility modernization",
"fields_to_return": [
"govtribe_id",
"name",
"description",
"updated_at",
"govtribe_type"
]
}
}Which pipelines exactly mention "technical support services"?
{
"tool": "Search_Pipelines",
"arguments": {
"query": "\"technical support services\"",
"fields_to_return": [
"govtribe_id",
"name",
"description",
"updated_at",
"govtribe_type"
]
}
}Which pipelines are owned by a specific teammate?
{
"tool": "Search_Users",
"arguments": {
"query": "teammate@example.com",
"fields_to_return": [
"govtribe_id",
"name",
"email"
]
}
}{
"tool": "Search_Pipelines",
"arguments": {
"owner_ids": [
"<teammate_user_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"description",
"updated_at",
"govtribe_type"
]
}
}Which pipelines were created by a specific teammate?
{
"tool": "Search_Users",
"arguments": {
"query": "teammate@example.com",
"fields_to_return": [
"govtribe_id",
"name",
"email"
]
}
}{
"tool": "Search_Pipelines",
"arguments": {
"creator_ids": [
"<teammate_user_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"description",
"updated_at",
"govtribe_type"
]
}
}Aggregation examples
Use aggregations when the task asks for a workspace-level pipeline summary instead of individual pipeline rows. Set per_page to 0 when the agent only needs rollups.
How are pipelines distributed by owner and creator?
{
"tool": "Search_Pipelines",
"arguments": {
"aggregations": [
"top_owners_by_doc_count",
"top_creators_by_doc_count"
],
"per_page": 0
}
}Which tags are attached to facility modernization pipelines?
{
"tool": "Search_Pipelines",
"arguments": {
"query": "\"facility modernization\"",
"aggregations": [
"top_tags_by_doc_count"
],
"per_page": 0
}
}Related articles
- Pipeline MCP response: Review the response shape returned by this tool.
- Pipeline data type: Understand the shared record fields and relationships used by this tool.
- Choose a search mode and write queries: Choose keyword or semantic search behavior and shape
queryvalues. - GovTribe AI: Review the GovTribe AI surface where this tool can be called.
- GovTribe for Agents: Use GovTribe for Agents as the starting point for MCP tools, MCP tool responses, and guides.
- MCP servers: Review where this MCP tool can be used.
- Invoke Search Tool MCP tool: Review where this MCP tool can be used.
- Source identifiers and record matching: Use GovTribe IDs and source identifiers when passing records between tools.