Loxo MCP Server

add-note

Add a note to a candidate or job

Input Schema

NameRequiredDescriptionDefault
contentYesContent of the note
entity_idYesID of the entity
entity_typeYesType of entity (candidate or job)

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Content of the note", "type": "string" }, "entity_id": { "description": "ID of the entity", "type": "string" }, "entity_type": { "description": "Type of entity (candidate or job)", "enum": [ "candidate", "job" ], "type": "string" } }, "required": [ "entity_type", "entity_id", "content" ], "type": "object" }