Claude
write_soul
Append an entry to a soul or replace it entirely. Entries can be typed as note, fact, todo, or question.
Remote wolfe-jam/claude-faf-mcp
Remote (network-hosted)
Other tools also called write_soul?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"fact": {
"type": "string",
"description": "Shorthand for entry with type=fact (backwards compatible)"
},
"soul": {
"type": "string",
"description": "Soul identifier"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Tags for filtering/sorting (e.g., [\"oauth\", \"security\"])"
},
"type": {
"enum": [
"note",
"fact",
"todo",
"question"
],
"type": "string",
"description": "Entry type (default: note)"
},
"entry": {
"type": "string",
"description": "Text entry to append"
},
"token": {
"type": "string",
"description": "Write authorization token"
},
"content": {
"type": "string",
"description": "Full content for replacement"
},
"replace": {
"type": "boolean",
"description": "Replace entire soul"
}
}
}