Loxo MCP Server

add-to-call-queue

Add a candidate or contact to the call queue

Input Schema

NameRequiredDescriptionDefault
entity_idYesID of the candidate or contact
entity_typeYesType of entity (candidate or contact)
notesNoNotes about why this call is needed
priorityNoPriority level for the callmedium

Input Schema (JSON Schema)

{ "properties": { "entity_id": { "description": "ID of the candidate or contact", "type": "string" }, "entity_type": { "description": "Type of entity (candidate or contact)", "enum": [ "candidate", "contact" ], "type": "string" }, "notes": { "description": "Notes about why this call is needed", "type": "string" }, "priority": { "default": "medium", "description": "Priority level for the call", "enum": [ "high", "medium", "low" ], "type": "string" } }, "required": [ "entity_type", "entity_id" ], "type": "object" }