trackmcp
Back to directory
prmail

wellness_pulse_mcp

View on GitHub

Wellness Pulse

1 stars JavaScriptOthers Updated Jul 4, 2026

Documentation


๐Ÿง  What Is Wellness Pulse MCP?

Wellness Pulse MCP is a Model Context Protocol (MCP) server that bridges the gap between raw wellbeing data and AI-powered understanding.

With a single integration, your AI gets access to:

  • ๐Ÿ“Š CDC PLACES public benchmarks โ€” trusted mental health data for any ZIP code or county in the US
  • ๐Ÿข Institutional wellness signals โ€” live trends, snapshots, and alert checks from your organization's Wellness Pulse data
  • ๐Ÿ—ฃ๏ธ Plain-English explanations โ€” AI-ready summaries returned alongside structured JSON

Built for fast "ask โ†’ answer" workflows in copilots, automations, and AI dashboards โ€” no human analysis needed in the loop.


โœจ Why Teams Add Wellness Pulse MCP

CapabilityWhat It Unlocks
๐Ÿ“– Instant NarrativeYour AI explains *"what changed and why it matters"* without a human analyst.
๐Ÿ“ CDC BenchmarksCounty-level mental distress context for marketing decks, reports, and grant applications.
๐Ÿ“ก Live Institution SignalsDaily trends + alert checks that catch wellbeing drops before they become crises.
๐Ÿ”Œ One IntegrationAdd the MCP once โ€” reuse it across every copilot, agent, and dashboard your team runs.
๐Ÿ”’ Privacy-FirstNo user tracking. No identifiers. Trusted by institutions that take privacy seriously.

๐Ÿ—๏ธ Architecture Overview

Wellness Pulse Architecture

๐Ÿ› ๏ธ Available Tools

๐ŸŒ Public Benchmark Tools

`get_mental_health_benchmark`

Fetches CDC PLACES Frequent Mental Distress (FMD) data for a given ZIP code or county FIPS.

Arguments:

ParameterTypeRequiredDescription
`zip`stringoptional*5-digit US ZIP code
`county_fips`stringoptional*County FIPS code

*At least one of `zip` or `county_fips` is required.*

Returns: `scope`, `values`, `national_percentile_rank` (optional), `marketing_copy`

Example use case: *"What's the CDC mental distress benchmark for ZIP 94597?"*


`get_basic_alert_guidance`

Returns default alert thresholds based on organization size and location type โ€” no institution ID needed.

Arguments:

ParameterTypeRequiredDescription
`org_size`stringโœ…e.g. `"small"`, `"medium"`, `"large"`
`location_type`stringโœ…e.g. `"urban"`, `"rural"`, `"suburban"`

Example use case: *"What alert thresholds should we use for a mid-size suburban institution?"*


๐Ÿข Institution Data Tools

> These tools require a valid institution identifier (`institution_id`) from your Wellness Pulse account.

`get_institution_snapshot`

A point-in-time snapshot of wellness data for your institution over a given window.

Arguments:

ParameterTypeRequiredDescription
`institution_id`stringโœ…Your Wellness Pulse institution ID
`window_days`integerโœ…Look-back window in days (e.g. `30`, `90`)

Returns: `response_count`, `avg_wellness_score`, `last_response_at`


`get_institution_trend_daily`

Fetches a daily time-series of wellness scores and response counts.

Arguments:

ParameterTypeRequiredDescription
`institution_id`stringโœ…Your Wellness Pulse institution ID
`window_days`integerโœ…Number of days to include

Returns: Array of `{ day, avg_wellness, responses }` objects

Example use case: *"What's our wellness trend for the last 90 days?"*


`get_institution_alert_check`

Compares last 7 days vs prior 7 days and flags significant drops.

Arguments:

ParameterTypeRequiredDescription
`institution_id`stringโœ…Your Wellness Pulse institution ID

Returns: `drop_pct`, `alert` (boolean flag)

Example use case: *"Did we drop week-over-week? Should we be concerned?"*


`get_sector_snapshot`

Sector-level aggregated wellness data across institutions.

Arguments:

ParameterTypeRequiredDescription
`sector`stringโœ…Sector identifier
`window_days`integerโœ…Look-back window in days

Returns: `institutions_with_responses`, `total_responses`, `avg_wellness_score`


๐Ÿš€ Getting Started

Step 1 โ€” Add to Your AI Client

Claude Desktop (`claude_desktop_config.json`)

json
{
  "mcpServers": {
    "Wellness Pulse": {
      "url": "https://wpulse.org/mcp/",
      "transport": "http-stream"
    }
  }
}

Cursor (`.cursor/mcp.json`)

json
{
  "mcpServers": {
    "Wellness Pulse": {
      "url": "https://wpulse.org/mcp/",
      "transport": "http-stream"
    }
  }
}

Step 2 โ€” Initialize a Session (via cURL)

bash
curl -s https://wpulse.org/mcp/ \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "initialize",
    "params": {
      "protocolVersion": "2025-03-26",
      "capabilities": {},
      "clientInfo": { "name": "my-app", "version": "1.0.0" }
    }
  }'

> ๐Ÿ“Œ Capture the `mcp-session-id` from the response headers โ€” you'll need it for all subsequent calls.


Step 3 โ€” List Available Tools

bash
curl -s https://wpulse.org/mcp/ \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "mcp-session-id: " \
  -d '{ "jsonrpc": "2.0", "id": 2, "method": "tools/list", "params": {} }'

Step 4 โ€” Call a Tool

Example: Fetch CDC benchmark for a ZIP code

bash
curl -s https://wpulse.org/mcp/ \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "mcp-session-id: " \
  -d '{
    "jsonrpc": "2.0",
    "id": 3,
    "method": "tools/call",
    "params": {
      "name": "get_mental_health_benchmark",
      "arguments": { "zip": "94597" }
    }
  }'

Example: Check institution alert status

bash
curl -s https://wpulse.org/mcp/ \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "mcp-session-id: " \
  -d '{
    "jsonrpc": "2.0",
    "id": 4,
    "method": "tools/call",
    "params": {
      "name": "get_institution_alert_check",
      "arguments": { "institution_id": "inst_abc123" }
    }
  }'

๐Ÿ’ฌ Example Prompts to Ask Your AI

Once Wellness Pulse MCP is connected, try asking your AI:

code
"What's our wellness trend for the last 90 days?"
"Did we drop week-over-week? Why might that matter?"
"What's the CDC mental distress benchmark for ZIP 94597?"
"Write a short exec update with our wellness numbers and CDC context."
"Are we above or below the national average for mental distress?"
"Flag any alert conditions in our institution data this week."
"Summarize the sector snapshot and highlight any outliers."

๐Ÿ”Œ Endpoints Reference

TypeURL
HTTP Stream (canonical)`https://wpulse.org/mcp/`
HTTP Stream (redirect)`https://wpulse.org/mcp`
SSE`https://wpulse.org/sse`

Required headers for HTTP Streaming:

code
Content-Type: application/json
Accept: application/json, text/event-stream

All calls use JSON-RPC 2.0.


๐Ÿ” Privacy & Security

Wellness Pulse MCP is built with a privacy-first architecture:

  • โœ… No user tracking or behavioral logging
  • โœ… No personally identifiable information (PII) stored or transmitted
  • โœ… Institution data is scoped and access-controlled per account
  • โœ… All transport over HTTPS
  • โœ… Designed for compliance-conscious environments (healthcare, education, HR)

๐Ÿ—บ๏ธ Use Cases

๐Ÿฅ Healthcare & Employee Wellness Teams

Use daily trend monitoring and week-over-week alert checks to detect emerging burnout or distress signals before they escalate โ€” and give clinical or HR leadership an AI-generated executive summary on demand.

๐ŸŽ“ Universities & Educational Institutions

Combine CDC county benchmarks with your student wellness survey data to contextualize scores relative to regional norms โ€” ideal for accreditation reports and student affairs presentations.

๐Ÿ“ˆ HR Tech & Wellness Platforms

Embed Wellness Pulse MCP into your existing copilot or dashboard product to instantly add benchmarked mental health context and trend narration โ€” without building your own data pipeline.

๐Ÿ“ข Public Health Communications

Pull CDC PLACES FMD data by ZIP or county to generate marketing copy, grant narratives, and community health reports grounded in authoritative public data.

๐Ÿค– AI Agents & Automations

Wire Wellness Pulse MCP into multi-step agents that periodically check for alert conditions, draft stakeholder updates, and route escalations โ€” all without human-in-the-loop analysis.


๐Ÿ“š Resources


๐Ÿ“„ License

This server is available under an Institutional License. Please visit wpulse.org for licensing details and institutional access.


Frequently asked questions

What is wellness_pulse_mcp?

wellness_pulse_mcp is Wellness Pulse

How do I install wellness_pulse_mcp?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is wellness_pulse_mcp open source?

Yes โ€” it is hosted on GitHub at https://github.com/prmail/wellness_pulse_mcp and has 1 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP