Skip to main content
Glama

check_prayer_status

Read-only

Check how many people are praying for a prayer request previously submitted for a user (and whether it's been marked answered). Requires the same user's consent_token; only returns status for that user's own prayers.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
prayer_idYesThe prayer_id returned by submit_prayer_request.
consent_tokenYesThe same user's SoapBox consent token (scope 'prayer:write') used when the prayer was submitted. Only returns status for that user's own prayers.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / consent_token / examples
      Previous value: -[
      -  "sbxpr_9f3a2b7c4d5e6f7a…"
      -]New value: +[
      +  "sbxc_9f3a2b7c4d5e6f7a…"
      +]
  2. Changed5 schema fields changed
    • changedInput schema / properties / consent_token / description
      Previous value: -"The user's SoapBox consent token (scope prayer:write)."New value: +"The same user's SoapBox consent token (scope 'prayer:write') used when the prayer was submitted. Only returns status for that user's own prayers."
    • addedInput schema / properties / consent_token / examples
      Added value: +[
      +  "sbxpr_9f3a2b7c4d5e6f7a…"
      +]
    • addedInput schema / properties / consent_token / minLength
      Added value: +16
    • addedInput schema / properties / prayer_id / examples
      Added value: +[
      +  "b3095717-5cc0-4213-8964-a01a5ee6b250"
      +]
    • addedInput schema / properties / prayer_id / format
      Added value: +"uuid"
  3. First observed

TDQS

A4.2/5.0
Behavior4/5

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

Annotations declare readOnlyHint=true and destructiveHint=false, so the tool is a safe read. The description adds valuable context beyond annotations: it discloses that a valid consent_token is required (authorization constraint) and that results are restricted to the user's own prayers. It also mentions the answered status field. It does not detail response format or error behavior, but for a read-only tool with this level of annotation coverage, the added context is solid.

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?

The description is a single, front-loaded sentence that states the core action, the prerequisite, and the scoping rule with zero waste. Every clause earns its place, making it efficient for an agent to parse quickly.

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 simple read-only tool with two well-documented parameters and no output schema, the description covers the essential aspects: what it does, the prerequisite (consent_token), and the data it returns (count and answered flag). It does not describe the response format explicitly, but the description implies the key fields. No significant information an agent needs to call it correctly is missing.

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 100% – both prayer_id and consent_token have descriptive entries in the schema. The description does not add new semantics beyond what the schema already provides, though it reinforces the consent_token requirement. Since the schema carries the full parameter documentation, the baseline of 3 is appropriate.

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 clearly states the tool's purpose: 'Check how many people are praying for a prayer request previously submitted for a user (and whether it's been marked answered).' It uses a specific verb (check), names the resource (prayer status), and distinguishes itself from the sibling submit_prayer_request by referencing 'previously submitted'. The scope constraint ('only returns status for that user's own prayers') further clarifies what it does.

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?

The description provides clear context for when to use the tool: 'previously submitted' implies it should be used after a prayer request has been created via submit_prayer_request. It also specifies a prerequisite ('Requires the same user's consent_token') and the scoping rule. However, it does not explicitly name alternatives or state 'use this instead of X', though the sibling list makes the pairing obvious.

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.

Resources