Tool tree
scan_images_c2paAction
Scan every <img> on the current page for C2PA Content Credentials (content provenance metadata) and return a per-image summary: whether a manifest is present, the claim generator (the tool that produced or edited the image), the title, and the signer name. Use this to find which images on a page carry provenance data. Note: provenance is decoded but NOT cryptographically verified.
View tool JSON
{
"name": "scan_images_c2pa",
"kind": "act",
"impl": "imperative",
"description": "Scan every <img> on the current page for C2PA Content Credentials (content provenance metadata) and return a per-image summary: whether a manifest is present, the claim generator (the tool that produced or edited the image), the title, and the signer name. Use this to find which images on a page carry provenance data. Note: provenance is decoded but NOT cryptographically verified.",
"inputSchema": {
"type": "object",
"properties": {
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 25,
"description": "Maximum number of images to fetch and scan (default 25, max 100)."
}
},
"required": []
}
}inspect_image_c2paAction
Fetch a single image (by CSS selector or URL) and return its fully decoded C2PA manifest store: every manifest's claim, assertions (e.g. c2pa.actions edit history, schema.org authorship), and the COSE signature details (algorithm and signing-certificate identity). Provide exactly one of `selector` or `url`. Note: the signature is decoded but NOT cryptographically verified.
View tool JSON
{
"name": "inspect_image_c2pa",
"kind": "act",
"impl": "imperative",
"description": "Fetch a single image (by CSS selector or URL) and return its fully decoded C2PA manifest store: every manifest's claim, assertions (e.g. c2pa.actions edit history, schema.org authorship), and the COSE signature details (algorithm and signing-certificate identity). Provide exactly one of `selector` or `url`. Note: the signature is decoded but NOT cryptographically verified.",
"inputSchema": {
"type": "object",
"properties": {
"selector": {
"type": "string",
"maxLength": 8192,
"description": "CSS selector for an <img> element on the page."
},
"url": {
"type": "string",
"maxLength": 8192,
"description": "Image URL (absolute, or relative to the current page) to fetch and inspect."
}
},
"required": []
}
}ellomind_list_servicesAction
List ElloMind's therapy session types, prices in INR, duration and the languages sessions are available in. Call this before quoting a price — prices are set by ElloMind and change over time.
View tool JSON
{
"name": "ellomind_list_services",
"kind": "act",
"impl": "imperative",
"description": "List ElloMind's therapy session types, prices in INR, duration and the languages sessions are available in. Call this before quoting a price — prices are set by ElloMind and change over time.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
}ellomind_check_availabilityAnswer
Real open appointment slots for an ElloMind therapy session. Times are IST (Asia/Kolkata) in 24h HH:MM. Slots that have already passed are removed. Dates are YYYY-MM-DD; defaults to the next 14 days.
View tool JSON
{
"name": "ellomind_check_availability",
"kind": "answer",
"impl": "imperative",
"description": "Real open appointment slots for an ElloMind therapy session. Times are IST (Asia/Kolkata) in 24h HH:MM. Slots that have already passed are removed. Dates are YYYY-MM-DD; defaults to the next 14 days.",
"inputSchema": {
"type": "object",
"properties": {
"session_type": {
"type": "string",
"enum": [
"individual",
"couples",
"teen"
],
"description": "Which session type to check."
},
"from": {
"type": "string",
"description": "Start date, YYYY-MM-DD. Defaults to today (IST)."
},
"to": {
"type": "string",
"description": "End date, YYYY-MM-DD. Defaults to 14 days out."
}
},
"required": [
"session_type"
],
"additionalProperties": false
}
}ellomind_start_bookingSensitive Action
Get the link where a person books an ElloMind therapy session themselves. Returns a URL to hand over — it does not book anything, hold a slot, or take payment. The person picks their slot, gives consent and pays on that page. For agent-driven booking end to end, use ElloMind's MCP server at https://mcp.ellomind.com/mcp instead.
View tool JSON
{
"name": "ellomind_start_booking",
"kind": "transact",
"impl": "imperative",
"description": "Get the link where a person books an ElloMind therapy session themselves. Returns a URL to hand over — it does not book anything, hold a slot, or take payment. The person picks their slot, gives consent and pays on that page. For agent-driven booking end to end, use ElloMind's MCP server at https://mcp.ellomind.com/mcp instead.",
"inputSchema": {
"type": "object",
"properties": {
"session_type": {
"type": "string",
"enum": [
"individual",
"couples",
"teen"
],
"description": "Optional. Preselects the session type on the booking page."
}
},
"additionalProperties": false
}
}