add_knowledge_text
ActiveTool of FavCRM
declared in 1.0.0
Add a free-form text document to the knowledge base. Use for pasted policies, FAQs, internal notes, brand voice references — anything the agent should be able to retrieve later. Stored as a single document; agent-side embedding/retrieval happens elsewhere.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"name",
"content"
],
"properties": {
"name": {
"type": "string",
"maxLength": 200,
"minLength": 1,
"description": "Friendly title for the document"
},
"content": {
"type": "string",
"minLength": 1,
"description": "Document body text"
}
}
}Parent server
FavCRM
https://github.com/favcrm/mcp
1/7 registries