Skip to main content

Company Enrich

Coming soon

The v2 MCP API is in preview and not yet generally available. These pages document its tools and request/response shapes; live data access is limited to enrolled organizations until v2 is released.

Enrich a BATCH of up to 25 companies with multiple data sections in a single call, returned as { companies: [...] }. Select companies with hg_ids and/or domains (at least one required; both may be combined and are unioned). Companies with no match are omitted from the array — do not assume positional alignment with your input. Choose sections with fields: firmographics (name, location, industry, size, hierarchy), spend (IT spend by category), ai_spend (AI spend by category — opt-in, request explicitly), technographics (installed tech stack), contracts (contract records), ai_maturity (AI/data maturity scores), cloud_maturity (per-provider cloud footprint), statistics (aggregated summaries), market_benchmarks (peer-group positioning). Defaults to firmographics + technographics + spend when fields is omitted. The same fields/filters/pagination apply to every company in the batch; credit cost scales with the number of companies returned. contracts/statistics/market_benchmarks are entitlement-gated — if your org lacks access they are omitted and listed under unavailableSections rather than failing the call. Use this when you have a known set of companies (by hg_id or domain) and need 2+ data sections — a broad profile — in one round-trip. Do NOT use when: you only need firmographics for one company or a simple lookup — use company_firmographic (faster, cheaper, smaller payload, and accepts a batch too); you are discovering/filtering companies you do not yet have identifiers for — use search_companies; you need the full multi-level ownership tree (subsidiaries, siblings) — use company_hierarchy; you need exactly one section — prefer the dedicated single-section tool (company_firmographic, company_technographic, company_spend). The interactive dashboard renders the first returned company (batches show a banner).

Parameters

NameTypeRequiredDefaultDescription
hg_idsarray❌ No-HG Insights company IDs for batch enrichment (up to 25). Each is 31-32 alphanumeric/hex chars, from a previous search_companies result. Provide hg_ids or domains (at least one is required); both may be combined and are unioned.
domainsarray❌ No-Company domains for batch enrichment (e.g. ['cisco.com', 'salesforce.com'], up to 25). Protocol prefixes (http://, https://), leading www., and trailing paths/queries/fragments are stripped automatically; case is normalized. Provide hg_ids or domains; both may be combined.
fieldsarray❌ No-Which data sections to return. One or more of: firmographics, spend, ai_spend, technographics, contracts, ai_maturity, cloud_maturity, statistics, market_benchmarks. Defaults to ['firmographics','technographics','spend'] when omitted (ai_spend is opt-in — request it explicitly). contracts/statistics/market_benchmarks are entitlement-gated and are omitted (with unavailableSections noting them) if your org lacks access.
filtersobject❌ No-Optional upstream filters, forwarded verbatim. spend.categories.{ids,names}, ai_spend.categories.{ids,names} and technographics.{country,installs,product_attributes,product_categories,product_last_verified_date,products,vendors} — see the /v2/companies/enrich contract. Filters only apply to the matching section. IMPORTANT: category and product names filters require EXACT catalog strings (e.g. "Infrastructure-as-a-Service (IaaS)", not "Cloud Infrastructure"; "Cloud Services", not "Cloud Infrastructure") — resolve canonical names via get_product_category or get_vendor_information first when unsure. A non-matching name silently returns no data for that section, indistinguishable from a true empty result.
filters.spendobject❌ No-
filters.spend.categoriesobject❌ No-
filters.spend.categories.idsarray❌ No-
filters.spend.categories.namesarray❌ No-
filters.ai_spendobject❌ No-
filters.ai_spend.categoriesobject❌ No-
filters.ai_spend.categories.idsarray❌ No-
filters.ai_spend.categories.namesarray❌ No-
filters.technographicsobject❌ No-
filters.technographics.countryobject❌ No-
filters.technographics.country.codesarray✅ Yes-
filters.technographics.installsobject❌ No-
filters.technographics.installs.granularitystring❌ No-
filters.technographics.installs.localizedboolean❌ No-
filters.technographics.product_attributesobject❌ No-
filters.technographics.product_attributes.idsarray✅ Yes-
filters.technographics.product_categoriesobject❌ No-
filters.technographics.product_categories.idsarray❌ No-
filters.technographics.product_categories.namesarray❌ No-
filters.technographics.product_last_verified_dateobject❌ No-
filters.technographics.product_last_verified_date.minstring❌ No-
filters.technographics.product_last_verified_date.maxstring❌ No-
filters.technographics.productsobject❌ No-
filters.technographics.products.idsarray❌ No-
filters.technographics.products.namesarray❌ No-
filters.technographics.vendorsobject❌ No-
filters.technographics.vendors.idsarray❌ No-
filters.technographics.vendors.namesarray❌ No-
paginationobject❌ No-Optional independent pagination for the nested spend, ai_spend and technographics arrays: { spend?: {limit,offset}, ai_spend?: {limit,offset}, technographics?: {limit,offset} }. limit is 0-100.
pagination.spendobject❌ No-
pagination.spend.limitinteger❌ No-
pagination.spend.offsetinteger❌ No-
pagination.ai_spendobject❌ No-
pagination.ai_spend.limitinteger❌ No-
pagination.ai_spend.offsetinteger❌ No-
pagination.technographicsobject❌ No-
pagination.technographics.limitinteger❌ No-
pagination.technographics.offsetinteger❌ No-
contractsobject❌ No-Optional contracts request block { filters?: {active_only, vendor_names (max 10)}, limit?, offset? }. Requires 'contracts' in fields AND the contracts entitlement — providing this block alone does not return contracts.
contracts.filtersobject❌ No-
contracts.filters.active_onlyboolean❌ No-
contracts.filters.vendor_namesarray❌ No-
contracts.limitinteger❌ No-
contracts.offsetinteger❌ No-
fullboolean❌ NofalseWhen true, return every row per section (technographic installs, spend/ai_spend rows, contract records) instead of the default per-section caps that keep a call under the 40KB inline limit. Use only when you need the complete section arrays. Default: false.

Required Integrations

  • hginsights_v2__data_api

Use Cases

  • Build a full company profile (firmographics + technographics + spend) for a domain in one call — omit fields to get the default trio
  • Enrich a short list of companies at once — pass domains: [...] and/or hg_ids: [...] (up to 25, unioned)
  • Get IT spend AND installed tech stack for a company without two separate tool calls — fields: ["spend", "technographics"]
  • Pull AI spend and AI/data maturity together for account research — fields: ["ai_spend", "ai_maturity"] (ai_spend is opt-in)
  • Enrich the hg_ids returned by search_companies with several sections in a single round-trip

Example Usage

Default profile (firmographics + technographics + spend) by domain

{
"tool": "company_enrich",
"arguments": {
"domains": [
"cisco.com"
]
}
}

Batch enrich with selected sections

{
"tool": "company_enrich",
"arguments": {
"domains": [
"salesforce.com",
"workday.com"
],
"fields": [
"firmographics",
"spend",
"ai_spend"
]
}
}

Enrich by hg_id with a technographics country filter

{
"tool": "company_enrich",
"arguments": {
"hg_ids": [
"25582D0E650950949A473EA7345C193E"
],
"fields": [
"technographics"
],
"filters": {
"technographics": {
"country": {
"codes": [
"US"
]
}
}
}
}
}

company_firmographic, company_technographic, company_spend, company_hierarchy, search_companies