list_knowledge
List knowledge entries in your workspace with optional filters.
Parameters:
Search by title or content.
Filter by type: text, url, or file.
Example request:
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "list_knowledge",
"arguments": {
"search": "pricing"
}
},
"id": 1
}
Example response:
{
"knowledge": [
{
"id": "k-1",
"title": "Pricing FAQ",
"type": "text",
"sourceUrl": null,
"createdAt": "2025-01-12T11:00:00Z",
"updatedAt": "2025-01-18T15:30:00Z"
}
],
"total": 1
}
get_knowledge
Get a specific knowledge entry with its full content.
Parameters:
The ID of the knowledge entry to retrieve.
Example request:
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "get_knowledge",
"arguments": {
"knowledgeId": "k-1"
}
},
"id": 2
}
Example response:
{
"id": "k-1",
"title": "Pricing FAQ",
"content": "Our plans start at $29/month for the Starter plan...",
"type": "text",
"sourceUrl": null,
"createdAt": "2025-01-12T11:00:00Z",
"updatedAt": "2025-01-18T15:30:00Z"
}