MCP reference
MCP prompts
The 2 code-defined MCP prompts, generated from the PROMPTS registry.
The server ships 2 code-defined prompts. A prompt only orients the agent — it never queries or persists; arguments arrive as strings over the MCP wire.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
The 2 code-defined MCP prompts, generated from the PROMPTS registry.
{
"type": "object",
"properties": {
"selector": {
"type": "string",
"enum": [
"all",
"scope",
"project"
],
"description": "Which slice to brief over: a single scope, a single project, or all memories."
},
"mode": {
"type": "string",
"enum": [
"brief",
"full"
],
"description": "brief (counts + top items, the default) or full (the bounded lists)."
}
},
"required": [
"selector"
]
}
{
"type": "object",
"properties": {
"scope": {
"type": "string",
"minLength": 1,
"maxLength": 64,
"pattern": "^[a-z0-9][a-z0-9-]*$",
"description": "Optional scope (kebab-case, e.g. work, personal) the session belonged to."
},
"project": {
"type": "string",
"minLength": 1,
"maxLength": 256,
"description": "Optional project the session belonged to. Pass it on remember or the memory is invisible to that project briefing."
}
}
}