Update session summary mnemons
update_session_summary_mnemonsUpdate typed/meta fields of SessionSummary mnemons.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes | ||
| campaignId | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| results | Yes |
update_session_summary_mnemonsUpdate typed/meta fields of SessionSummary mnemons.
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes | ||
| campaignId | Yes |
| Name | Required | Description | Default |
|---|---|---|---|
| results | Yes |
Changes observed during successful MCP inspections.
Input schema / properties / items / items / properties / attendeeCharacterIdsRemoved value: -{
- "items": {
- "type": "string"
- },
- "type": "array"
-}Input schema / properties / items / items / properties / attendeeNpcEntryIdsRemoved value: -{
- "items": {
- "type": "string"
- },
- "type": "array"
-}Input schema / properties / items / items / properties / combatsAdded value: +{
+ "description": "Combat encounters that took place this session.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "description": {
+ "description": "Who fought whom and where, in one sentence.",
+ "minLength": 1,
+ "type": "string"
+ },
+ "outcome": {
+ "description": "How it resolved, e.g. \"party victorious, no casualties\".",
+ "type": "string"
+ }
+ },
+ "required": [
+ "description"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}Input schema / properties / items / items / properties / detailedSummaryAdded value: +{
+ "description": "Full narrative summary, 3-5 paragraphs.",
+ "type": "string"
+}Input schema / properties / items / items / properties / linkedLocationEntryIdsRemoved value: -{
- "items": {
- "type": "string"
- },
- "type": "array"
-}Input schema / properties / items / items / properties / linkedQuestEntryIdsRemoved value: -{
- "items": {
- "type": "string"
- },
- "type": "array"
-}Input schema / properties / items / items / properties / lootAdded value: +{
+ "description": "Items, treasure, or rewards acquired.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}Input schema / properties / items / items / properties / majorEventsAdded value: +{
+ "description": "Significant story beats, in chronological order.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}Input schema / properties / items / items / properties / npcsMentionedAdded value: +{
+ "description": "NPCs that appeared or were referenced. This is descriptive only — to link one to an existing NPC mnemon, call create_mnemon_relationship with SESSION_ATTENDEE_NPC.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "name": {
+ "description": "Name as referenced in the session, e.g. \"Captain Mira\".",
+ "minLength": 1,
+ "type": "string"
+ },
+ "role": {
+ "description": "Role played this session, e.g. \"quest-giver\", \"rescued captive\".",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}Input schema / properties / items / items / properties / oneSentenceSummaryAdded value: +{
+ "description": "Single-sentence TL;DR of what happened.",
+ "type": "string"
+}Input schema / properties / items / items / properties / openThreadsAdded value: +{
+ "description": "Unresolved threads and cliffhangers as of session end.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}Input schema / properties / items / items / properties / partyDecisionsAdded value: +{
+ "description": "Meaningful choices that will shape future sessions.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}Input schema / properties / items / items / properties / partyEndStateAdded value: +{
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "Character display name -> short end-of-session status line.",
+ "type": "object"
+}Input schema / properties / items / items / properties / previouslyOnAdded value: +{
+ "description": "Where each player ended — read aloud at the top of the next session.",
+ "type": "string"
+}Input schema / properties / items / items / properties / suggestedTitleAdded value: +{
+ "description": "Short evocative title for the session, like a TV episode title.",
+ "type": "string"
+}Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate it is a write operation (readOnlyHint=false), non-destructive (destructiveHint=false), and idempotent (idempotentHint=true). The description adds no extra behavioral context such as whether updates merge or replace fields, or what 'typed/meta fields' means operationally.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence that is front-loaded with the verb and resource. No wasted words or irrelevant details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has a complex schema with nested objects and many fields, plus many sibling tools, but the description is minimal. It does not explain the difference from 'update_mnemons_content', the semantics of partial updates, or the meaning of 'typed/meta'. The output schema exists, but operational completeness is lacking.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description provides no parameter information. Schema description coverage is 0%, and the description does not compensate by explaining 'campaignId' (which lacks a schema description) or the structure of 'items'. Though the nested schema has rich descriptions for properties, the key top-level params remain unexplained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Update') and resource ('SessionSummary mnemons'), and narrows the scope to 'typed/meta fields'. This distinguishes it from generic content updates, though it does not explicitly contrast with siblings like 'update_mnemons_content'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives such as 'update_mnemons_content' or 'create_session_summary_mnemons'. The description only states what it does, not when it should be chosen.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.