Wellness Pulse

Wellness Pulse

WellPulse MCP is a privacy-first AI layer that transforms wellbeing data into real-time insights, benchmarks, and actionable summaries for faster decision-making.

Category
访问服务器

README

<div align="center">

<img src="https://raw.githubusercontent.com/prmail/WellPulse_mcp/main/WellPulse.jpeg" alt="WellPulse Logo" width="120" style="border-radius: 16px;" />

<h1>Wellness Pulse MCP</h1>

<p><strong>Plug your AI into real wellbeing intelligence — one connection, instant insight.</strong></p>

<p> <a href="https://wpulse.org/"><img src="https://img.shields.io/badge/Website-wpulse.org-0ea5e9?style=for-the-badge&logo=globe&logoColor=white" alt="Website" /></a> <a href="https://wpulse.org/mcp/"><img src="https://img.shields.io/badge/Status-Live-22c55e?style=for-the-badge&logo=statuspage&logoColor=white" alt="Status" /></a> <a href="https://claude.ai"><img src="https://img.shields.io/badge/Claude-Compatible-8b5cf6?style=for-the-badge&logo=anthropic&logoColor=white" alt="Claude" /></a> <a href="https://cursor.sh"><img src="https://img.shields.io/badge/Cursor-Compatible-3b82f6?style=for-the-badge&logo=cursor&logoColor=white" alt="Cursor" /></a> <a href="https://wpulse.org/"><img src="https://img.shields.io/badge/License-Institutional-1e3a5f?style=for-the-badge&logo=licenseplate&logoColor=white" alt="License" /></a> </p>

<p> <img src="https://img.shields.io/badge/Protocol-MCP%202025--03--26-f97316?style=for-the-badge" alt="MCP Protocol" /> <img src="https://img.shields.io/badge/Transport-HTTP%20Stream%20%7C%20SSE-ec4899?style=for-the-badge" alt="Transport" /> <img src="https://img.shields.io/badge/Data-CDC%20PLACES%20%2B%20Institutional-10b981?style=for-the-badge" alt="Data Sources" /> <img src="https://img.shields.io/badge/Privacy-No%20Tracking%20%7C%20No%20IDs-6366f1?style=for-the-badge&logo=shield&logoColor=white" alt="Privacy" /> </p>

<br />

Wellness Pulse MCP is a plug-and-play intelligence layer that turns raw wellbeing data into clear, actionable insights for AI systems.
One integration connects your copilots, agents, and dashboards to trusted public benchmarks and live institutional wellness signals — no analyst required.

</div>


🧠 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

Capability What It Unlocks
📖 Instant Narrative Your AI explains "what changed and why it matters" without a human analyst.
📍 CDC Benchmarks County-level mental distress context for marketing decks, reports, and grant applications.
📡 Live Institution Signals Daily trends + alert checks that catch wellbeing drops before they become crises.
🔌 One Integration Add the MCP once — reuse it across every copilot, agent, and dashboard your team runs.
🔒 Privacy-First No 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:

Parameter Type Required Description
zip string optional* 5-digit US ZIP code
county_fips string optional* 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:

Parameter Type Required Description
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:

Parameter Type Required Description
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:

Parameter Type Required Description
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:

Parameter Type Required Description
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:

Parameter Type Required Description
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)

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

Cursor (.cursor/mcp.json)

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

Step 2 — Initialize a Session (via cURL)

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

curl -s https://wpulse.org/mcp/ \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "mcp-session-id: <YOUR_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

curl -s https://wpulse.org/mcp/ \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "mcp-session-id: <YOUR_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

curl -s https://wpulse.org/mcp/ \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "mcp-session-id: <YOUR_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:

"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

Type URL
HTTP Stream (canonical) https://wpulse.org/mcp/
HTTP Stream (redirect) https://wpulse.org/mcp
SSE https://wpulse.org/sse

Required headers for HTTP Streaming:

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.


<div align="center">

<img src="https://raw.githubusercontent.com/prmail/WellPulse_mcp/main/WellPulse.jpeg" alt="WellPulse" width="60" />

<p>Built with care by the <strong>Wellness Pulse</strong> team.<br/>Helping organizations understand and act on wellbeing data — intelligently.</p>

<p> <a href="https://wpulse.org/">wpulse.org</a> • <a href="https://wpulse.org/mcp/">Live MCP Endpoint</a> </p>

</div>

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选