Knowledge Base MCP Server

retrieve_knowledge

Retrieves similar chunks from the knowledge base based on a query. Optionally, if a knowledge base is specified, only that one is searched; otherwise, all available knowledge bases are considered. By default, at most 10 documents are returned with a score below a threshold of 2. A different threshold can optionally be provided.

Input Schema

NameRequiredDescriptionDefault
knowledge_base_nameNoOptional. Name of the knowledge base to query (e.g., 'company', 'it_support', 'onboarding'). If omitted, the search is performed across all available knowledge bases.
queryYesThe query text to use for semantic search.
thresholdNoOptional. The maximum similarity score to return.

Input Schema (JSON Schema)

{ "properties": { "knowledge_base_name": { "description": "Optional. Name of the knowledge base to query (e.g., 'company', 'it_support', 'onboarding'). If omitted, the search is performed across all available knowledge bases.", "type": "string" }, "query": { "description": "The query text to use for semantic search.", "type": "string" }, "threshold": { "description": "Optional. The maximum similarity score to return.", "type": "number" } }, "required": [ "query" ], "type": "object" }

You must be authenticated.

Other Tools