Contact MCP response
MCP tool response payload returned when agents retrieve GovTribe contact records through MCP tools.
- Data type: Contact data type
- Returned by: Search contacts MCP tool
Fields
| Field | Type | Attribute |
|---|---|---|
govtribe_id | string | GovTribe ID attribute |
govtribe_ai_summary | string | GovTribe AI summary attribute |
govtribe_type | string | GovTribe type attribute |
govtribe_url | string | GovTribe URL attribute |
types | array | Types attribute |
name | string | Name attribute |
email | string | Email attribute |
phone | string | Phone attribute |
title | string | Title attribute |
role | string | Role attribute |
organization | string | Organization attribute |
updated_at | string | Updated at attribute |
parent_organization_details | relationship object array | Parent organization details attribute |
tags | relationship object array | Tags attribute |
Relationship Returns
| Field | Returns |
|---|---|
parent_organization_details | Vendor MCP response array, Federal agency MCP response array, Jurisdiction MCP response array, State MCP response array |
tags | Tag MCP response array |
Example
{
"email": "contact@example.gov",
"govtribe_ai_summary": "Representative AI-generated summary of the record and surrounding context.",
"govtribe_id": "CONTACT_ID",
"govtribe_type": "contact",
"govtribe_url": "https://govtribe.com/contact/CONTACT_ID",
"name": "Example Contact",
"organization": "Example Agency",
"parent_organization_details": [
{
"govtribe_id": "FEDERAL_AGENCY_ID",
"govtribe_type": "federal_agency",
"govtribe_url": "https://govtribe.com/agency/federal-agency/FEDERAL_AGENCY_ID",
"name": "Parent organization"
}
],
"phone": "555-0100",
"role": "Contracting Officer",
"tags": [
{
"background_color": "#2f855a",
"govtribe_id": "TAG_ID",
"govtribe_type": "tag",
"name": "Proposal ready"
}
],
"title": "Contracting Officer",
"types": [
"Point of Contact"
],
"updated_at": "2025-03-20T16:04:10Z"
}