Overview
MCP (Model Context Protocol) allows AI tools to connect directly to your context repository. Once connected, AI agents can retrieve, search, and update context while respecting the permissions and access controls configured in Qontext. Examples include:Connecting via MCP
Qontext exposes a hosted MCP server:Available operations
The MCP server exposes the context repository through a POSIX-like set of operations.Read
Browse the file system and read content.| Operation | Description |
|---|---|
qontext_ls | List the direct children of a path (files and folders). |
qontext_find | Recursively list all descendants under a path. Filterable by kind (file / folder) or the date of the last update to the descendant. |
qontext_cat | Read the full content of one or more files. If any item in the batch cannot be read, the whole call fails. |
qontext_cat.
Search
Locate context by content or by meaning.| Operation | Description |
|---|---|
qontext_grep | Exact content search across the repository. Allows searching literally or using regex. |
retrieval-tool | Hybrid search over the repository. Takes a qualitative, natural-language query and returns the most relevant context. |
Write
Create and maintain context.| Operation | Description |
|---|---|
qontext_write | Create or update a file in an existing folder. |
qontext_mkdir | Create a folder. |
qontext_mv | Rename or move a file. |
qontext_rm | Delete a file or folder. Deletion is irreversible. |