get_entity_extensions
Retrieve entity-specific extensions and details (Person, Organization, Business) using the entity ID, enabling analysis of corporate influence and relationships via LittleSis MCP.
Instructions
Get the types/extensions associated with an entity (Person, Organization, Business, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
details | No | Include additional details contained within extensions | |
id | Yes | The entity ID |
Input Schema (JSON Schema)
{
"properties": {
"details": {
"default": false,
"description": "Include additional details contained within extensions",
"type": "boolean"
},
"id": {
"description": "The entity ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}