Expand description
Post-Cortex MCP Service — consolidated 9-tool API.
Tools:
- session — create/list/load/search/update_metadata/delete sessions
- update_conversation_context — single or bulk updates
- semantic_search — unified search with scope (structured payload)
- get_structured_summary — summary with optional sections
- query_conversation_context — flexible queries
- manage_workspace — workspace operations
- assemble_context — graph-aware retrieval (semantic + traversal + impact)
- manage_entity — delete entities / context updates from a session
- admin — daemon health, vectorization, checkpoints
The #[tool_router]-decorated impl block must stay in a single file so the
rmcp macro can see every #[tool] method at once. Tool method bodies are
delegated to per-tool submodules to keep this file readable.
Structs§
- Admin
Request - Request payload for the
admintool. - Assemble
Context Request - Request payload for the
assemble_contexttool. - Context
Update Item - Single context-update item used in bulk mode.
- GetStructured
Summary Request - Request payload for the
get_structured_summarytool. - Manage
Entity Request - Request payload for the
manage_entitytool. - Manage
Workspace Request - Request payload for the
manage_workspacetool. - Post
Cortex Service - Post-Cortex MCP Service
- Query
Conversation Context Request - Request payload for the
query_conversation_contexttool. - Semantic
Search Request - Request payload for the
semantic_searchtool. - Session
Request - Request payload for the
sessiontool. - Update
Conversation Context Request - Request payload for the
update_conversation_contexttool.