Agentra LabsAgentra Labs DocsPublic Documentation

Get Started

MCP Prompts

AgenticCognition provides MCP prompt definitions that guide AI agents through common cognition workflows. Prompts are exposed via the prompts/list and prompts/get MCP methods.

AgenticCognition provides MCP prompt definitions that guide AI agents through common cognition workflows. Prompts are exposed via the prompts/list and prompts/get MCP methods.

Available Prompts

create-model

Guides the agent through creating a new living user model with initial context.

Arguments:

ArgumentTypeRequiredDescription
namestringnoOptional name for the model

Prompt messages:

{
  "name": "create-model",
  "description": "Guide the creation of a new living user model",
  "arguments": [
    {"name": "name", "description": "Optional name for the model", "required": false}
  ]
}

When invoked, the prompt returns a series of messages that instruct the agent to create a model, ask the user introductory questions, and add initial beliefs based on responses.

belief-analysis

Guides the agent through analyzing a user's belief system by querying the belief graph, identifying keystones, and surfacing contradictions.

Arguments:

ArgumentTypeRequiredDescription
model_idstringyesModel to analyze
domainstringnoFocus on a specific domain

Prompt messages:

The prompt instructs the agent to retrieve the belief graph, identify the five strongest beliefs, check for contradictions, and present findings to the user with questions for deeper exploration.

soul-reflection

Guides the agent through a deep soul reflection session that combines belief analysis, shadow mapping, and drift tracking.

Arguments:

ArgumentTypeRequiredDescription
model_idstringyesModel to reflect on
focusstringnoOptional focus area

Prompt messages:

The prompt instructs the agent to run soul reflection, shadow mapping, and drift tracking in sequence, then synthesize the results into a cohesive narrative about the user's current psychological landscape.

shadow-exploration

Guides the agent through exploring the user's shadow with sensitivity and care.

Arguments:

ArgumentTypeRequiredDescription
model_idstringyesModel to explore

Prompt messages:

The prompt provides instructions for gentle shadow exploration, emphasizing ethical guidelines: always present shadow insights as possibilities, never as diagnoses; use tentative language; and always give the user agency over whether to engage with shadow material.

decision-support

Guides the agent through using the prediction engine to help a user make a decision.

Arguments:

ArgumentTypeRequiredDescription
model_idstringyesModel to use
scenariostringyesDecision scenario

Prompt messages:

The prompt instructs the agent to simulate the decision, present alignment analysis for each option, and help the user understand how each choice relates to their core values and belief system.

Using Prompts

MCP clients list available prompts:

{
  "jsonrpc": "2.0",
  "method": "prompts/list",
  "id": 1
}

And retrieve a specific prompt with arguments:

{
  "jsonrpc": "2.0",
  "method": "prompts/get",
  "params": {
    "name": "soul-reflection",
    "arguments": {
      "model_id": "abc-123",
      "focus": "growth"
    }
  },
  "id": 2
}

The response contains the prompt messages that the client should use to guide the interaction.