Skip to content

Tools reference

Once connected, your assistant has the nine tools below. They map directly to the REST API, so the responses and the permission rules are identical. All are read-only.

Search the organization’s business knowledge base (processes, policies, facts, and source documents and transcripts). This is usually the first tool to call: it returns type-tagged results with snippets, relevance scores, and web links.

InputTypeNotes
querystringNatural-language search query. Required.
typesstring[]Restrict to topic and/or chapter. Defaults to all.
limitnumberMax results, 1–50. Default 10.

Fetch a knowledge topic by id: its description, category, the items under it (processes, policies, facts), and related topics. Use after search_mereon to read a topic in full.

InputTypeNotes
topicIdstringTopic id from search results or related topics. Required.

Fetch a single item (process, policy, or fact) by id, including its child items and the source evidence backing it: quotes, video timestamps, document ranges, and confidence, with links to the original content.

InputTypeNotes
itemIdstringItem id from a topic’s items list. Required.

Fetch the full text of a source document, or the transcript of a video, split into chapters. Use when search snippets are not enough and you need the original wording.

InputTypeNotes
contentIdstringContent id from search results or item evidence. Required.

Find who is Responsible, Accountable, Consulted, or Informed for a topic, item, space, or category, including duties inherited from parent entities. Answers “who owns this process” and “who should I ask about this”.

InputTypeNotes
entityTypestringOne of TOPIC, ITEM, SPACE, CATEGORY. Required.
entityIdstringThe entity id. Required.

List the organization’s data-quality issues (conflicts, duplicates, content and structure gaps, stale or misclassified knowledge), most recent first.

InputTypeNotes
statusstringOPEN, IN_PROGRESS, RESOLVED, or DISMISSED.
typestringCONFLICT, DUPLICATE, MISCLASSIFICATION, STALE, CONTENT_GAP, STRUCTURE_GAP, or OTHER.
severitystringCRITICAL, HIGH, MEDIUM, or LOW.
assignedToMebooleanOnly issues assigned to the connected user.
cursorstringPagination cursor from a previous response.
limitnumberMax issues, 1–100. Default 50.

List viewable content resources (documents, videos, and guides), most recent first. Use to find a specific resource by name or browse a type. For questions about what the content says, use search_mereon instead.

InputTypeNotes
querystringTitle keywords. Every word must appear in the title, any order, case-insensitive.
typestringRestrict to one of document, video, guide.
cursorstringPagination cursor from a previous response.
limitnumberMax resources, 1–100. Default 50.

List lessons in the catalog (authored training units), most recent first. For the raw source videos and documents use list_content; for what the material says use search_mereon.

InputTypeNotes
querystringTitle keywords. Every word must appear in the lesson title.
cursorstringPagination cursor from a previous response.
limitnumberMax lessons, 1–100. Default 50.

Fetch one lesson in detail: its metadata and the source content pieces it teaches, in order.

InputTypeNotes
lessonIdstringThe lesson id. Required.