GovTribe

Pipeline MCP response

MCP tool response payload returned when agents retrieve GovTribe pipeline records through MCP tools.

Fields

FieldTypeAttribute
govtribe_idstringGovTribe ID attribute
govtribe_typestringGovTribe type attribute
govtribe_urlstringGovTribe URL attribute
namestringName attribute
descriptionstringDescription attribute
created_atstringCreated at attribute
updated_atstringUpdated at attribute
ownerrelationship objectOwner attribute
creatorrelationship objectCreator attribute
stagesrelationship object arrayStages attribute
tagsrelationship object arrayTags attribute

Relationship Returns

FieldReturns
ownerUser MCP response
creatorUser MCP response
stagesStage MCP response array
tagsTag MCP response array

Example

{
  "created_at": "2026-04-02T18:42:32Z",
  "creator": {
    "govtribe_id": "CREATOR_ID",
    "govtribe_type": "creator",
    "govtribe_url": "https://govtribe.com/creator/CREATOR_ID",
    "name": "Creator"
  },
  "description": "Representative description text.",
  "govtribe_id": "PIPELINE_ID",
  "govtribe_type": "pipeline",
  "govtribe_url": "https://govtribe.com/workspace/WORKSPACE_ID/pipeline/PIPELINE_ID",
  "name": "Example Pipeline",
  "owner": {
    "govtribe_id": "USER_ID",
    "govtribe_type": "user",
    "name": "Record Owner"
  },
  "stages": [
    {
      "govtribe_id": "STAGE_ID",
      "govtribe_type": "stage",
      "govtribe_url": "https://govtribe.com/stages/STAGE_ID",
      "name": "Qualified"
    }
  ],
  "tags": [
    {
      "background_color": "#2f855a",
      "govtribe_id": "TAG_ID",
      "govtribe_type": "tag",
      "name": "Proposal ready"
    }
  ],
  "updated_at": "2026-04-02T18:42:33Z"
}