find_prayer
Find an honest scripture prayer for what someone is feeling after leaving the church: broken trust, anger, grief, fear, loneliness, shame, or doubt. Give a feeling in their own words (e.g. "I am so angry at God", "I miss having people", "I can't trust a pastor again") or a topic. Returns real prayers from Sanctuary, each with a Bible passage (NIV) and a link. For people who left the church but did not leave Jesus. Not counseling; anyone in crisis is pointed to 988.
Parameters2
| feeling | string | optional | What the person is feeling, in their own words. |
| topic | string | optional | A prayer topic, if known. |
Raw schema
{
"type": "object",
"properties": {
"feeling": {
"type": "string",
"description": "What the person is feeling, in their own words."
},
"topic": {
"type": "string",
"enum": [
"broken-trust",
"anger",
"grief",
"fear-anxiety",
"loneliness",
"shame",
"doubt"
],
"description": "A prayer topic, if known."
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}