Loxo MCP Server
by tbensonwest
add-note
Add a note to a candidate or job
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content of the note | |
entity_id | Yes | ID of the entity | |
entity_type | Yes | Type 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"
}