Pulse
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PulseWhat’s my current stress level?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Pulse
A consent-aware nervous system for AI agents.
Pulse connects live Wear OS heart-rate data and Android conversation transcripts to AI agents through the Model Context Protocol (MCP). Agents can observe a session, derive evidence-backed speech and stress signals, review synchronized reports, and deliver coaching responses through the wearer's phone.
Pulse is an experimental prototype, not a medical device. Its stress signal is a deterministic heart-rate heuristic and must not be used for diagnosis, treatment, safety-critical decisions, or emergency response.
Why Pulse?
Most AI agents only know what a user types. Pulse gives an agent a real-time, session-scoped view of what is happening around the wearer:
Live physiological context from Wear OS Health Services, including freshness and sensor availability.
Conversation context from streaming transcription, with pace, turn length, and silence metrics.
Deterministic stress signals derived from heart-rate changes rather than opaque model inference.
Durable event delivery across watch, phone, and backend disconnects, with acknowledgements and duplicate suppression.
MCP-native access through typed resources, tools, prompts, and an interactive session-report widget.
On-demand coaching requested from the watch and delivered after conversational silence.
Hardware-free development through canonical fixtures and simulated device actions.
Related MCP server: Polar MCP
How It Works
flowchart LR
W[Wear OS watch<br/>heart rate + requests] -->|Wear Data Layer| P[Android phone<br/>queue + transcription]
P -->|WebSocket events| B[Pulse backend<br/>validation + SQLite]
B --> S[Session intelligence<br/>stress + speech metrics + reports]
S --> M[NitroStack MCP server]
M --> A[AI agent / MCP host]
A -->|coaching action| B
B -->|TTS command| P
P -->|spoken advice| E[Wearer]The phone owns the session clock and durably queues events. The backend validates strict versioned contracts, stores events transactionally, indexes final transcripts with SQLite FTS5, and derives repeatable session metrics. The MCP server exposes that state without coupling the device pipeline to a specific agent host.
Quick Start
The default configuration uses fixture events, simulated vitals, and simulated device actions. No watch, phone, cloud API key, or native build toolchain is needed.
Prerequisites
Node.js 20 or 22 LTS
npm 9 or newer
NitroStudio for interactive MCP testing
1. Install
git clone https://github.com/tejasai2007/pulse.git
cd pulse
npm ci
npm --prefix src/widgets ciCreate the local environment file:
cp .env.example .envOn Windows PowerShell, use Copy-Item .env.example .env instead.
The sample binds the backend to 0.0.0.0 so physical devices can reach it. For simulator-only use, set BACKEND_HOST=127.0.0.1 in .env before starting the backend.
2. Start Pulse
Run the backend and NitroStack development environment in separate terminals:
npm run dev:backendnpm run devThe backend is reachable locally at http://127.0.0.1:8787. Check its runtime health:
curl http://127.0.0.1:8787/healthWithout OPENAI_API_KEY, the health response reports the copilot provider as degraded and uses deterministic fallback advice; the local fixture path remains available.
3. Send Fixture Events
In a third terminal:
npm run mock:eventsEach event prints a JSON acknowledgement. The fixture creates session-fixture-001 with one simulated heart-rate sample and one final transcript segment. Event IDs are stable and deduplicated, so rerunning the command is safe.
npm run dev keeps TypeScript and the widgets rebuilt, but it does not launch the MCP entry point. Open the project in NitroStudio and launch dist/index.js. For a stdio MCP host, run npm run build, set its working directory to the cloned repository, and configure the host command as node --env-file=.env dist/index.js.
Then try:
phase_zero_probewithmessage: "hello"to verify MCP connectivity.session://latest/transcriptto read the fixture transcript.search_sessionswithstatus: "calibrating"to find the fixture session.generate_session_reportwithsessionId: "session-fixture-001"to render the report widget in a compatible host.
MCP Surface
Resources
Resource | Purpose |
| Most recently ingested final transcript segment |
| Ordered transcript for the current session |
| Stored transcript for a selected session |
| Consent-checked latest BPM, freshness, and rolling window |
| Consent-checked deterministic stress state and supporting metrics |
| Speech pace, longest turn, and current silence |
| Consent-checked wearer-provided goals and boundaries |
| Synchronized session summary and evidence timeline |
Tools
Tool | Purpose |
| Read live vitals, stress, and speech metrics together |
| Read a bounded selection of current transcript segments |
| Search transcript text, dates, and lifecycle status |
| Build an evidence-only report for a stored session |
| Request a predefined haptic intervention |
| Queue TTS coaching after conversational silence |
| Claim an advice request initiated from the watch |
| Deliver grounded advice for a claimed request |
| Verify connectivity between an MCP host and Pulse |
Pulse also provides the review_session and handle_copilot_request prompts. Canonical schemas and delivery semantics are documented in docs/contracts-v1.md.
Conversation Copilot
Conversation Copilot supports two execution modes:
COPILOT_MODE=automaticasks an OpenAI-compatible Responses API for one concise suggestion. SetOPENAI_API_KEYonly on the backend. Requests usestore: false, and deterministic metric-based advice is used if no key is configured or the provider fails. The current system prompt is specifically tailored to presenting Pulse on stage, not general conversations.COPILOT_MODE=mcpleaves reasoning to an MCP host. The host claims the watch request, reads the consented session evidence, and responds throughcopilot_advice. The current Android flow does not create session context or grantread:context, so context-dependent MCP mode requires those events to be supplied separately.
Set COPILOT_ENABLED=false to disable watch-requested advice. Backend-queued TTS pauses transcription, waits for 1.5 seconds of conversational silence, plays through the selected phone audio route, and then resumes capture. Local probe and heart-rate alerts speak immediately.
Android and Wear OS
Additional Prerequisites
Android Studio with Android SDK 35
JDK 17
Android phone running API 31 or newer
Wear OS device running API 30 or newer with Health Services and Google Play services
A paired phone and watch; Bluetooth earbuds are optional
A Deepgram API key for live cloud transcription
Open android in Android Studio and add machine-specific values to the ignored android/local.properties file:
BACKEND_URL=http://10.0.2.2:8787
VITALS_SOURCE=simulated
AUDIO_INPUT=phone
TRANSCRIPTION_MODE=fixture
# DEEPGRAM_API_KEY=restricted-development-key10.0.2.2 reaches the host machine from an Android emulator. A physical phone must use a backend URL reachable on its network, such as http://192.168.1.10:8787. Debug builds allow local cleartext traffic; release builds require HTTPS/WSS.
From the android directory, build and install both apps:
.\gradlew.bat :phone:installDebug :watch:installDebugOn macOS or Linux, use sh ./gradlew (the tracked wrapper is not executable).
For the real device path:
Set
VITALS_SOURCE=watchinandroid/local.properties.Add a restricted development
DEEPGRAM_API_KEYto enable Deepgram streaming. It is compiled into every APK variant, so never use a production credential or distribute that APK.Point
BACKEND_URLat the reachable Pulse backend.Grant microphone permission on the phone and health/body-sensor permissions on the watch.
Start a session from either device and verify watch, backend, and audio-route status on the phone.
The watch captures heart rate through a foreground Health Services exercise session. It sends urgent Data Layer items to the phone and retains unacknowledged samples across temporary disconnects. The phone persists its backend replay queue and reconnects with bounded backoff.
The Android app currently ignoresTRANSCRIPTION_MODE: when microphone permission and foreground startup allow capture, a non-empty DEEPGRAM_API_KEY enables Deepgram streaming. On-device transcription is not implemented, and fixture transcripts come from npm run mock:events, not from Android. DEVICE_ACTIONS is a backend setting; Android's generated value is unused. Real backend-triggered watch haptic delivery is also incomplete.
The phone currently triggers a local watch vibration and spoken warning after heart rate remains above 85 BPM for 10 seconds outside exercise mode. This prototype alert does not check MCP consent scopes orDEVICE_ACTIONS and is not medically validated. Do not use the real-vitals path with people until this behavior has been reviewed or disabled.
Hardware validation steps and the latest recorded results are in docs/phase-zero-results.md.
Session Report Widget
The report tool is connected to an MCP Ext App built with Next.js and React. To develop it separately:
npm --prefix src/widgets ci
npm --prefix src/widgets run devThe development server runs at http://localhost:3001. Build it with:
npm --prefix src/widgets run buildConfiguration
Copy .env.example to .env for development defaults. The default BACKEND_HOST=0.0.0.0 exposes the unauthenticated backend to the local network; use 127.0.0.1 when device access is not required.
Variable | Default | Description |
|
| Runtime environment |
|
|
|
|
| NitroStack process mode used by the local development path |
|
| Backend bind address |
|
| Backend HTTP/WebSocket port |
|
| Backend URL used by the MCP server and fixture sender |
|
| SQLite database path |
|
|
|
|
|
|
|
| Backend runtime label; Android currently ignores it |
|
|
|
|
| Enable watch-requested advice |
|
|
|
| unset | Backend-only key for automatic copilot advice |
|
| OpenAI-compatible model name |
|
| OpenAI-compatible API base URL |
| unset | Deepgram key for live Android transcription |
|
| Must remain |
Do not commit .env or android/local.properties.
Privacy and Safety
Pulse processes health-adjacent and conversational data. Understand the current boundary before using real data:
Starting an Android session attempts microphone capture when permission and foreground-service startup allow it. If the APK contains a non-empty
DEEPGRAM_API_KEY, captured audio is streamed to Deepgram regardless ofTRANSCRIPTION_MODE. Pulse does not intentionally persist or expose raw audio through MCP.Final transcripts, heart-rate samples, consent events, and derived metrics are stored in local SQLite without application-level encryption. The phone also keeps pending and rejected event payloads in unencrypted
SharedPreferences.Automatic copilot mode may send up to 20 recent transcript segments, speech metrics, and consented vital/stress summaries to the configured OpenAI-compatible provider. It does not currently send wearer-provided session context.
Current vitals, stress, context, and backend intervention paths enforce their defined consent scopes. Consent enforcement is not uniform across every transcript and historical HTTP/MCP read, and the phone's local high-heart-rate alert bypasses those scopes.
Backend HTTP and WebSocket endpoints do not currently implement transport authentication. Bind only to trusted development networks.
Data retention and session deletion controls are not yet implemented.
Logs redact common secret, authorization, transcript, text, and audio fields, but logs should still be treated as sensitive.
Use synthetic data for development. Never include real transcripts, health data, credentials, or identifying logs in issues or pull requests.
Project Structure
pulse/
|-- src/
| |-- backend/ # HTTP/WS ingestion, SQLite, metrics, reports
| |-- contracts/ # Canonical Zod schemas and fixtures
| |-- observability/ # Structured redacting logger
| |-- widgets/ # Next.js MCP Ext App
| `-- *.ts # MCP resources, tools, prompts, and registration
|-- android/
| |-- contracts/ # Shared Kotlin transport contracts
| |-- phone/ # Session, audio, queue, and backend bridge
| `-- watch/ # Wear UI, Health Services, and Data Layer
|-- fixtures/events/ # Canonical JSON contract fixtures
|-- docs/ # Contracts and validation records
`-- data/ # Local SQLite state, ignored by GitDevelopment
Command | Purpose |
| Rebuild TypeScript on change and run the widget development server |
| Build and run the backend with |
| Send the canonical fixture sequence |
| Type-check TypeScript without emitting files |
| Build the MCP server and backend |
| Build and run contract, backend, metric, report, and server tests |
| Start the built MCP server |
| Start the previously built backend |
Validate all Android modules from the android directory:
.\gradlew.bat --no-daemon "-Pkotlin.incremental=false" :contracts:testDebugUnitTest :phone:testDebugUnitTest :phone:assembleDebug :watch:assembleDebugThere is currently no configured lint command or CI workflow.
Current Limitations
Pulse is a prototype and has no production deployment configuration.
HTTP/WebSocket ingress authentication and uniform read authorization are unfinished.
Real backend-to-watch haptic command delivery is incomplete.
Android ignores
TRANSCRIPTION_MODE; on-device transcription is not implemented.Android ignores its generated
DEVICE_ACTIONSvalue; intervention simulation is controlled by the backend.The local high-heart-rate alert bypasses consent and device-action settings.
Session retention, deletion, and cross-session trend controls are not implemented.
The device-health widget source is present but is not registered in the active MCP module.
Physical sensor quality, private earbud routing, and vibration behavior require manual device testing.
Contributing
Issues and focused pull requests are welcome. Before opening a PR:
Run
npm run typecheckandnpm test.Run
npm --prefix src/widgets testfor widget changes.Run the Android validation command for Kotlin or contract changes.
Describe any hardware used and separate automated evidence from manual device observations.
Keep fixtures deterministic and update both TypeScript and Kotlin consumers when changing a boundary contract.
For security reports, do not disclose sensitive data in a public issue. Submit a sanitized report and request a private contact channel.
License
This repository does not currently include a license. Its source is available for inspection, but it is not yet distributed under an open-source license.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceLocal-first MCP server that connects AI agents to your Fitbit activity, sleep, heart-rate, HRV, SpO2 and weight data.333081MIT
- AlicenseBqualityAmaintenanceLocal-first MCP server that connects AI agents to your Polar training, sleep, Nightly Recharge and continuous-sample data.373305MIT

Sensor Bio MCP Serverofficial
AlicenseAqualityCmaintenanceConnects Sensor Bio wearable data to AI assistants via the Model Context Protocol, enabling queries about sleep, heart rate, activity, and other biometrics.131MIT- Alicense-qualityDmaintenanceConnects AI assistants to physical devices via MCP, enabling LLMs to reason about sensor data, perform cross-device correlation, and interpret anomalies.4Apache 2.0
Related MCP Connectors
Fuses biometric signals into a stress score (0-100) for AI adaptation. MCP + A2A native.
Give AI agents real phone numbers, messages, and voice calls via MCP.
Connect e-commerce and marketing data to AI assistants via MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hrideshmg/pulse'
If you have feedback or need assistance with the MCP directory API, please join our Discord server