create_context_section
Create a project context section. title, type and body are required; languages scopes it (empty = all languages), position orders it (appended at the end when omitted). Prefer several focused sections over one giant blob - it keeps list/search cheap for future agents. Needs a project:settings:write (or mcp:*) key.
Parameters
Section titled “Parameters”| Name | Type | Description | |
|---|---|---|---|
project_uuid | string | optional | Project UUID. Required when multiple projects are configured (SONENTA_PROJECTS); defaults to the single configured project otherwise. |
title | string | required | Section title. |
type | string | required | Section type (open-set). Known values: overview | writing | qa | constraints | terminology | other. Any other slug is accepted. |
languages | array | optional | Language codes the section applies to (e.g. ["fr", "en-CA"]). Empty or omitted = applies to ALL languages. |
body | string | required | The section content (Markdown). This is what search_context_sections matches against. |
position | integer | optional | Order among sections (default: appended last). |
Example
Section titled “Example”{ "tool": "create_context_section", "arguments": { "title": "<title>", "type": "<type>", "body": "<body>" }}