1.2.0npm · get_notebook_mcp_server · current release
Observed 2026-08-18T08:44:34.640Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
list_knowledge_basesList available knowledge bases with their IDs and descriptions. You MUST use this tool first to find the correct kb_id for search_knowledge or recall_knowledge.Input schema{
"type": "object",
"properties": {}
} | — | — · — | — |
recall_knowledgeRaw recall from knowledge base without AI synthesis. Returns list of relevant notes/files.Input schema{
"type": "object",
"properties": {
"kb_id": {
"type": "string",
"description": "The ID of the knowledge base to search. Optional if only one KB is configured or to use the default."
},
"question": {
"type": "string",
"description": "The question or query"
},
"top_k": {
"type": "number",
"description": "Number of results to return",
"default": 10
},
"intent_rewrite": {
"type": "boolean",
"description": "Enable intent rewrite",
"default": false
}
},
"required": [
"question"
]
} | — | — · — | — |
search_knowledgeSearch knowledge base with AI processing. Returns synthesized answers and references.Input schema{
"type": "object",
"properties": {
"kb_id": {
"type": "string",
"description": "The ID of the knowledge base to search. Optional if only one KB is configured or to use the default."
},
"question": {
"type": "string",
"description": "The question to ask"
},
"deep_seek": {
"type": "boolean",
"description": "Enable deep thinking mode",
"default": false
},
"history": {
"type": "array",
"description": "Chat history for context",
"items": {
"type": "object",
"properties": {
"content": {
"type": "string"
},
"role": {
"type": "string",
"enum": [
"user",
"assistant"
]
}
}
}
}
},
"required": [
"question"
]
} | — | — · — | — |