overcome-stress
Server Details
Stress recovery protocols via Lightning payments: post-concussion, post-COVID, burnout
Glama couldn't complete the latest health check. If this server requires authentication, missing or expired test credentials may be the cause. A test profile lets Glama authenticate for health checks and discover tools; it is separate from your personal connections.
If you are the author, claim ownership, then add or update a test profile under Admin → Test Profile.
- Status
- Unhealthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- reitsmasieto-wq/overcome-stress-mcp
- GitHub Stars
- 0
TDQS
Scored across 5 tools
Each tool serves a distinct function: assessment, browsing, previewing, and two separate purchase types (skill vs. trajectory). There is no ambiguity in purpose.
All tool names follow a consistent pattern of lowercase verbs or verb_noun compounds (assess, catalog, preview, buy_skill, buy_trajectory). Predictable and readable.
5 tools is well-scoped for the server's purpose—covering assessment, catalog browsing, preview, and two purchase options without redundancy or unnecessary bloat.
The purchase tools return invoices but there is no tool to access or retrieve purchased content, creating a dead end in the user journey. Significant gap in the lifecycle.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
5 tool updates
- Changed
assess4 fields changed- added
Input schema / properties / symptoms / descriptionAdded value: +"Description of client symptoms, e.g. 'headaches, fatigue, brain fog, difficulty concentrating, anxiety after concussion or burnout." - removed
Input schema / properties / symptoms / titleRemoved value: -"Symptoms" - removed
Input schema / titleRemoved value: -"assessArguments" - changed
Output schema / (root)Previous value: -{ - "properties": { - "result": { - "title": "Result", - "type": "string" - } - }, - "required": [ - "result" - ], - "title": "assessOutput", - "type": "object" -}New value: +null
- Changed
buy_skill4 fields changed- added
Input schema / properties / skill_id / descriptionAdded value: +"Skill identifier from catalog, e.g. 'K01' for stress basics, 'K02' for autonomic nervous system regulation." - removed
Input schema / properties / skill_id / titleRemoved value: -"Skill Id" - removed
Input schema / titleRemoved value: -"buy_skillArguments" - changed
Output schema / (root)Previous value: -{ - "properties": { - "result": { - "title": "Result", - "type": "string" - } - }, - "required": [ - "result" - ], - "title": "buy_skillOutput", - "type": "object" -}New value: +null
- Changed
buy_trajectory4 fields changed- added
Input schema / properties / trajectory_id / descriptionAdded value: +"Trajectory identifier from catalog, e.g. 'T1' for post-concussion recovery, 'T2' for burnout, 'T3' for post-COVID." - removed
Input schema / properties / trajectory_id / titleRemoved value: -"Trajectory Id" - removed
Input schema / titleRemoved value: -"buy_trajectoryArguments" - changed
Output schema / (root)Previous value: -{ - "properties": { - "result": { - "title": "Result", - "type": "string" - } - }, - "required": [ - "result" - ], - "title": "buy_trajectoryOutput", - "type": "object" -}New value: +null
- Changed
catalog7 fields changed- removed
Input schema / properties / category / anyOfRemoved value: -[ - { - "type": "string" - }, - { - "type": "null" - } -] - removed
Input schema / properties / category / defaultRemoved value: -null - added
Input schema / properties / category / descriptionAdded value: +"Filter by category: 'skills' for individual exercises or 'trajectories' for 12-week programs." - removed
Input schema / properties / category / titleRemoved value: -"Category" - added
Input schema / properties / category / typeAdded value: +"string" - removed
Input schema / titleRemoved value: -"catalogArguments" - changed
Output schema / (root)Previous value: -{ - "properties": { - "result": { - "title": "Result", - "type": "string" - } - }, - "required": [ - "result" - ], - "title": "catalogOutput", - "type": "object" -}New value: +null
- Changed
preview4 fields changed- added
Input schema / properties / trajectory_id / descriptionAdded value: +"Trajectory identifier from catalog, e.g. 'T1' for post-concussion, 'T2' for burnout, 'T3' for post-COVID." - removed
Input schema / properties / trajectory_id / titleRemoved value: -"Trajectory Id" - removed
Input schema / titleRemoved value: -"previewArguments" - changed
Output schema / (root)Previous value: -{ - "properties": { - "result": { - "title": "Result", - "type": "string" - } - }, - "required": [ - "result" - ], - "title": "previewOutput", - "type": "object" -}New value: +null
5 tool updates
- Changed
assess4 fields changed- removed
Input schema / $defsRemoved value: -{ - "AssessIn": { - "properties": { - "symptoms": { - "maxLength": 500, - "minLength": 3, - "title": "Symptoms", - "type": "string" - } - }, - "required": [ - "symptoms" - ], - "title": "AssessIn", - "type": "object" - } -} - removed
Input schema / properties / paramsRemoved value: -{ - "$ref": "#/$defs/AssessIn" -} - added
Input schema / properties / symptomsAdded value: +{ + "title": "Symptoms", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "params" -]New value: +[ + "symptoms" +]
- Changed
buy_skill4 fields changed- removed
Input schema / $defsRemoved value: -{ - "SkillIn": { - "properties": { - "skill_id": { - "maxLength": 5, - "minLength": 2, - "title": "Skill Id", - "type": "string" - } - }, - "required": [ - "skill_id" - ], - "title": "SkillIn", - "type": "object" - } -} - removed
Input schema / properties / paramsRemoved value: -{ - "$ref": "#/$defs/SkillIn" -} - added
Input schema / properties / skill_idAdded value: +{ + "title": "Skill Id", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "params" -]New value: +[ + "skill_id" +]
- Changed
buy_trajectory6 fields changed- removed
Input schema / $defsRemoved value: -{ - "TrajIn": { - "properties": { - "trajectory_id": { - "maxLength": 4, - "minLength": 2, - "title": "Trajectory Id", - "type": "string" - } - }, - "required": [ - "trajectory_id" - ], - "title": "TrajIn", - "type": "object" - } -} - removed
Input schema / properties / paramsRemoved value: -{ - "$ref": "#/$defs/TrajIn" -} - added
Input schema / properties / trajectory_idAdded value: +{ + "title": "Trajectory Id", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "params" -]New value: +[ + "trajectory_id" +] - changed
Input schema / titlePrevious value: -"buy_trajArguments"New value: +"buy_trajectoryArguments" - changed
Output schema / titlePrevious value: -"buy_trajOutput"New value: +"buy_trajectoryOutput"
- Changed
catalog4 fields changed- removed
Input schema / $defsRemoved value: -{ - "CatIn": { - "properties": { - "category": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Category" - } - }, - "title": "CatIn", - "type": "object" - } -} - added
Input schema / properties / categoryAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Category" +} - removed
Input schema / properties / paramsRemoved value: -{ - "$ref": "#/$defs/CatIn" -} - removed
Input schema / requiredRemoved value: -[ - "params" -]
- Changed
preview4 fields changed- removed
Input schema / $defsRemoved value: -{ - "TrajIn": { - "properties": { - "trajectory_id": { - "maxLength": 4, - "minLength": 2, - "title": "Trajectory Id", - "type": "string" - } - }, - "required": [ - "trajectory_id" - ], - "title": "TrajIn", - "type": "object" - } -} - removed
Input schema / properties / paramsRemoved value: -{ - "$ref": "#/$defs/TrajIn" -} - added
Input schema / properties / trajectory_idAdded value: +{ + "title": "Trajectory Id", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "params" -]New value: +[ + "trajectory_id" +]
5 tool updates
- First observed
assess - First observed
buy_skill - First observed
buy_trajectory - First observed
catalog - First observed
preview
Related MCP Connectors
Lifestyle medicine health intelligence via x402 micropayments. 637+ peer-reviewed references.
Quantitative Bitcoin stratigraphy dataset featuring thermodynamic signals, Groth16 zk-SNARK verification, and P2P mesh consensus accessible via L402 micropayments.
Continuity protocol for autonomous AI agents. Agent messaging with SMTP bridge and LN payments.
Deterministic fitness coaching engine: adaptive programs, progression math, readiness autoregulation
Related MCP Servers
- FlicenseNot gradedqualityBmaintenancePeer-reviewed (ACM BCB 2026) within-subject physiological deviation scoring. Real-time IHB baseline queries with SHA-256 trust certificates and autonomous x402 USDC payments on Base L2. No population norms. No human required.-
- AlicenseNot gradedqualityCmaintenancePay-per-use semantic memory for AI agents with cryptographic attestation. Vector embeddings with SHA256 commitment, secp256k1 signature, and Lightning invoice.Apache 2.0
- AlicenseAqualityBmaintenanceAuthentication, pay-per-call metering, and signed receipts for AI agents and MCP tools using Bitcoin and Lightning Network.7246 npm1MIT
- AlicenseAqualityDmaintenancePersistent memory and payment safety for AI agents on Lightning. Enables agents to remember purchases, track vendor reputations, enforce budgets, and share trust signals via Nostr.229MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.