Headlessly
MCP

fetch

Get a specific entity, schema, metric, or the full business status.

Usage

Get an entity:

headless.ly/mcp#fetch
{ "type": "Contact", "id": "contact_uLoSfycy" }

Get with relationships:

headless.ly/mcp#fetch
{ "type": "Contact", "id": "contact_uLoSfycy", "include": ["deals", "organization"] }

Get a metric:

headless.ly/mcp#fetch
{ "type": "Metric", "id": "mrr" }

Get the full business status:

headless.ly/mcp#fetch
{ "type": "Status" }

Get a schema definition:

headless.ly/mcp#fetch
{ "type": "Schema", "id": "Contact" }

Parameters

ParameterTypeDescription
typestringEntity type, Metric, Status, or Schema
idstringEntity ID (not required for Status)
includestring[]Relationships to include
asOfstringTime travel -- fetch as of ISO timestamp

On this page