Skip to main content
Glama

submit_prayer_request

Post a prayer request to SoapBox's prayer wall ON BEHALF OF A USER, so their community can pray for it. Requires the user's consent_token (which they generate in the SoapBox app and which must include the 'prayer:write' scope) — an API key alone is not enough to act for a user. Returns the new prayer_id; use check_prayer_status to see how many are praying.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contentYesThe prayer request text, in the user's own words.
is_privateNoIf true, keep it private to the user; if false, share it on the community wall so others can pray.
consent_tokenYesOpaque SoapBox consent token with the 'prayer:write' scope, generated by the user in the SoapBox app (Settings › AI Agents). The first agent key to use a token is bound to it; a token no agent uses within 24 hours of being created stops working. An invalid, expired, or wrong-scope token returns an authorization error.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • changedInput schema / properties / consent_token / description
      Previous value: -"Opaque SoapBox consent token with the 'prayer:write' scope, generated by the user in the SoapBox app. An invalid, expired, or wrong-scope token returns an authorization error."New value: +"Opaque SoapBox consent token with the 'prayer:write' scope, generated by the user in the SoapBox app (Settings › AI Agents). The first agent key to use a token is bound to it; a token no agent uses within 24 hours of being created stops working. An invalid, expired, or wrong-scope token returns an authorization error."
    • changedInput schema / properties / consent_token / examples
      Previous value: -[
      -  "sbxpr_9f3a2b7c4d5e6f7a…"
      -]New value: +[
      +  "sbxc_9f3a2b7c4d5e6f7a…"
      +]
  2. Changed9 schema fields changed
    • changedInput schema / properties / consent_token / description
      Previous value: -"The user's SoapBox consent token (scope prayer:write)."New value: +"Opaque SoapBox consent token with the 'prayer:write' scope, generated by the user in the SoapBox app. An invalid, expired, or wrong-scope token returns an authorization error."
    • addedInput schema / properties / consent_token / examples
      Added value: +[
      +  "sbxpr_9f3a2b7c4d5e6f7a…"
      +]
    • addedInput schema / properties / consent_token / minLength
      Added value: +16
    • changedInput schema / properties / content / description
      Previous value: -"The prayer request text."New value: +"The prayer request text, in the user's own words."
    • addedInput schema / properties / content / examples
      Added value: +[
      +  "Please pray for my mother's surgery on Friday."
      +]
    • addedInput schema / properties / content / maxLength
      Added value: +2000
    • addedInput schema / properties / content / minLength
      Added value: +1
    • addedInput schema / properties / is_private / default
      Added value: +false
    • changedInput schema / properties / is_private / description
      Previous value: -"If true, keep it private to the user (default false = shared so others can pray)."New value: +"If true, keep it private to the user; if false, share it on the community wall so others can pray."
  3. First observed

TDQS

A4.2/5.0
Behavior4/5

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

With all annotation hints set to false (readOnly, openWorld, idempotent, destructive), the description carries the burden of behavioral disclosure. It excels by revealing critical traits: the token binding to the first agent, the 24-hour expiry, the requirement for prayer:write scope, and the return of a new prayer_id. It also implies non-idempotency through 'Post' and 'Returns the new prayer_id'. This is substantial and goes beyond what annotations provide.

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 two sentences, but every part earns its place. The first sentence front-loads the primary action and its on-behalf-of nature. The second packs the consent-token requirement, the API-key limitation, the return value, and a pointer to the follow-up tool. No redundant phrases, perfectly structured for quick comprehension.

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?

Given that this is a mutation tool with no output schema, the description is nearly complete. It states the action, prerequisites, token constraints, return value, and a follow-up tool. It does omit specifics on error handling beyond token issues and does not describe any side effects like visibility timing, but given the schema already handles parameter details, this is adequate for an agent to invoke it correctly. A slight gap is the lack of explicit behavioral notes for is_private, but that's in the schema.

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?

The schema description coverage is 100% for all three parameters, with each having its own detailed description (e.g., consent_token explains scope, binding, and expiry). The tool description adds only the return value as context, not per-parameter nuances. Since the schema already documents the parameters thoroughly, the description's contribution is minimal, matching the baseline of 3.

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 a specific action ('Post a prayer request'), the resource ('SoapBox's prayer wall'), and the scope ('ON BEHALF OF A USER'). It also distinguishes itself from the sibling check_prayer_status by mentioning the return of a prayer_id and directing to that tool for follow-up, which differentiates its purpose.

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 gives a clear prerequisite: it requires a user's consent_token with the 'prayer:write' scope and explicitly notes that an API key alone is insufficient. This serves as an implicit condition for when to use the tool. It also recommends check_prayer_status for post-creation status checks. However, it does not explicitly state when not to use it or name alternative creation tools, though the token requirement effectively bounds usage.

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