Skip to main content
Glama

humanMCP — kapoost

get_persona

Return one persona's full prompt by slug. Session-gated except for Hodor (guardian rules must always apply). Pass session_token if your client cannot set an Authorization header.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYes
session_tokenNoOptional. The SESSION_TOKEN emitted by bootstrap_session. Pass it here when your client cannot set a per-call Authorization: Bearer header.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • addedInput schema / properties / session_token
      Added value: +{
      +  "description": "Optional. The SESSION_TOKEN emitted by bootstrap_session. Pass it here when your client cannot set a per-call Authorization: Bearer header.",
      +  "type": "string"
      +}
  2. Changed1 schema field changed
    • removedInput schema / properties / slug / description
      Removed value: -"Persona slug (from list_personas)"
  3. Changed3 schema fields changed
    • removedInput schema / properties / code
      Removed value: -{
      -  "description": "Session code from bootstrap_session",
      -  "type": "string"
      -}
    • changedInput schema / properties / slug / description
      Previous value: -"Persona slug"New value: +"Persona slug (from list_personas)"
    • changedOutput schema / (root)
      Previous value: -{
      -  "properties": {
      -    "content": {
      -      "items": {
      -        "properties": {
      -          "text": {
      -            "type": "string"
      -          },
      -          "type": {
      -            "type": "string"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "type": "array"
      -    }
      -  },
      -  "type": "object"
      -}New value: +null
  4. Changed3 schema fields changed
    • addedInput schema / properties / code
      Added value: +{
      +  "description": "Session code from bootstrap_session",
      +  "type": "string"
      +}
    • changedInput schema / properties / slug / description
      Previous value: -"Persona slug (from list_personas)"New value: +"Persona slug"
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "content": {
      +      "items": {
      +        "properties": {
      +          "text": {
      +            "type": "string"
      +          },
      +          "type": {
      +            "type": "string"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
  5. Changed3 schema fields changed
    • removedInput schema / properties / code
      Removed value: -{
      -  "description": "Session code from bootstrap_session",
      -  "type": "string"
      -}
    • changedInput schema / properties / slug / description
      Previous value: -"Persona slug"New value: +"Persona slug (from list_personas)"
    • changedOutput schema / (root)
      Previous value: -{
      -  "properties": {
      -    "content": {
      -      "items": {
      -        "properties": {
      -          "text": {
      -            "type": "string"
      -          },
      -          "type": {
      -            "type": "string"
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "type": "array"
      -    }
      -  },
      -  "type": "object"
      -}New value: +null
  6. Changed2 schema fields changed
    • addedInput schema / properties / slug / description
      Added value: +"Persona slug"
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "content": {
      +      "items": {
      +        "properties": {
      +          "text": {
      +            "type": "string"
      +          },
      +          "type": {
      +            "type": "string"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
  7. Changed2 schema fields changed
    • addedInput schema / properties / code
      Added value: +{
      +  "description": "Session code from bootstrap_session",
      +  "type": "string"
      +}
    • removedInput schema / properties / slug / description
      Removed value: -"Persona slug (from list_personas)"
  8. Changed1 schema field changed
    • addedInput schema / properties / slug / description
      Added value: +"Persona slug (from list_personas)"
  9. Changed1 schema field changed
    • removedInput schema / properties / slug / description
      Removed value: -"Persona slug (from list_personas)"
  10. Changed1 schema field changed
    • addedInput schema / properties / slug / description
      Added value: +"Persona slug (from list_personas)"
  11. Added

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of disclosing behavior. It explicitly reveals that the tool is session-gated, that Hodor bypasses this, and that guardian rules always apply, which is meaningful access-control behavior beyond the schema. It does not elaborate on what 'guardian rules' entails or the response format, but for a simple getter it provides solid transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the core action and identifier, followed by the auth nuance. Every sentence earns its place with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a two-parameter getter with no output schema, it gives the lookup key, auth rule, and an exception. It does not describe errors or the exact response shape, but the phrase 'full prompt' already signals the return value; remaining gaps are minor.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 50%: session_token already has a detailed schema description, and the tool description mostly restates that. The only addition for slug is that lookup happens 'by slug', compensating somewhat for the schema's bare string type. Overall the description adds modest meaning but does not fully enrich parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific action and target ('Return one persona's full prompt by slug'), which clearly identifies the resource and lookup key. This distinguishes it from siblings like get_persona_journal or list_personas because it specifies 'full prompt' and 'by slug'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explains the authorization context: the tool is session-gated, has a Hodor exception, and tells callers when to pass session_token instead of an Authorization header. It does not name alternative tools or state when not to use it, so it falls just short of 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.