How the tools work together
1
Find a Knowledge Base
Ask which Knowledge Bases you have. The assistant lists them with
list_knowledge_bases, showing each one’s name and description.2
Search a Knowledge Base
Ask a question your Knowledge Base can answer. The assistant searches its contents with
search_knowledge_base and returns the best-matching passages.3
Add a document
Ask to save new content to the Knowledge Base. The assistant drafts the document, previews the plan with
add_knowledge_base_document, and adds it once you confirm.Behavior and safety
Behaviors
Knowledge Base tools
Creating a Knowledge Base is not available through MCP. To add one, use the Profound platform.
list_knowledge_bases
list_knowledge_bases
Lists the Knowledge Bases available to you.Example prompts:
- “Which Knowledge Bases do we have?”
- “Do we have a Knowledge Base for brand guidelines?”
search_knowledge_base
search_knowledge_base
Runs a semantic search inside a single Knowledge Base. Each result returns
id, score, content, and metadata, including folder_path, source_filename, and filetype.Example prompts:- “What do our brand guidelines say about tone of voice for product launches?”
- “Find the pricing FAQ in the product Knowledge Base.”
add_knowledge_base_document
add_knowledge_base_document
Adds one new document to a Knowledge Base as markdown text.Example prompts:
- “Save this campaign brief to the marketing Knowledge Base.”
- “Add the new positioning doc to the brand guidelines Knowledge Base, under the messaging folder.”
Notes:
- The tool accepts text only. If your source is a URL, the assistant reads the page first, then submits its content as markdown.
- New folders: saving into one new folder inside an existing one works automatically, and the response reports
folder_created. Saving into several missing folder levels at once fails first, and the assistant retries withcreate_missing_parents: trueafter you confirm the nesting is intended. - Knowledge Base documents are identified by name, so adding a second document with a name that already exists fails.
- Newly added content can take a moment to appear in search results. It’s a good practice to confirm with the assistant that the document was added before performing further actions with it.