Ultrahuman MCP Server
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., "@Ultrahuman MCP Servershow me my health metrics for today"
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.
Ultrahuman MCP Server
A Model Context Protocol (MCP) server for fetching health and fitness metrics from the Ultrahuman API. Built with TypeScript and designed for production use.
๐ Quick Start
Clone the repository
Install dependencies:
bun installBuild the project:
bun run buildConfigure your environment variables (see Configuration section)
Add to Claude Desktop (see Usage section)
Related MCP server: Oura MCP Server
๐ Getting Started with Ultrahuman API
Before you can use this MCP server, you'll need to obtain your Ultrahuman credentials. Follow these steps:
Step 1: Get Your Ultrahuman Email
Open the Ultrahuman app on your device
Navigate to the Profile tab at the bottom of the screen
Tap the settings icon (cog icon) in the top left corner
Your email address will be displayed at the top of the settings screen
Copy this email address - you'll need it for configuration
Step 2: Request API Key and Partner ID
You must obtain an API key and Partner ID from Ultrahuman by contacting them through one of these methods:
Email: Send a request to
support@ultrahuman.comIn-app chat: Use the customer service chat within the Ultrahuman app
Important: Make sure to include your Ultrahuman email address in your request to speed up the response time.
Once you receive your API key and Partner ID, keep them secure and private.
Step 3: Configure Partner ID in App
Open the Ultrahuman app on your device
Navigate to the Profile tab at the bottom of the screen
Tap the settings icon (cog icon) in the top left corner
Scroll down to find the Partner ID field
Enter the Partner ID code you received from Ultrahuman
Step 4: Configure the MCP Server
Now you can configure this MCP server with your credentials:
Set your environment variables (see Configuration section below)
Build and run the server
Add it to Claude Desktop with your API credentials
You're all set to start fetching your health data!
โจ Key Features
Fetch comprehensive health metrics from Ultrahuman API
Heart rate, sleep, steps, temperature, and HRV monitoring
Built with TypeScript for type safety
Bun for fast testing and development
Biome for linting and formatting
Clean, maintainable project structure
๐ Project Structure
ultrahuman-mcp/
โโโ src/
โ โโโ tools/ # MCP tools implementation
โ โ โโโ ultrahumanMetrics/ # Ultrahuman API integration
โ โโโ utils/ # Shared utilities
โ โโโ main.ts # Server entry point
โ โโโ types.ts # Shared type definitions
โโโ scripts/ # Build and utility scripts
โโโ biome.json # Linting configuration
โโโ tsconfig.json # TypeScript configuration
โโโ package.json # Project dependenciesโ๏ธ Configuration
This server requires environment variables to authenticate with the Ultrahuman API:
ULTRAHUMAN_AUTH_TOKEN: Your Ultrahuman API authorization tokenULTRAHUMAN_USER_EMAIL: The email address of the Ultrahuman user whose data you want to fetch
The API base URL is configured to https://partner.ultrahuman.com/api/v1.
๐ง Available Tools
ultrahuman_metrics
Fetches health and fitness metrics from the Ultrahuman API for a specific date. The user email is configured via environment variable, so you only need to specify the date to retrieve comprehensive health data.
Parameters:
date: Date in YYYY-MM-DD format to fetch metrics for (e.g., '2025-06-19')
Example Usage:
{
"name": "ultrahuman_metrics",
"arguments": {
"date": "2025-06-19"
}
}๐ Available Health Data
The API provides comprehensive health metrics including:
Heart Rate: Continuous heart rate monitoring with timestamps
Skin Temperature: Body temperature variations throughout the day
HRV (Heart Rate Variability): Heart rate variability measurements
Steps: Step count data with activity tracking
Sleep Data: Detailed sleep analysis including:
Sleep stages (Deep, Light, REM, Awake)
Sleep efficiency and quality metrics
Heart rate and HRV during sleep
Temperature variations during sleep
Recovery Index: Overall recovery score
Movement Index: Activity and movement metrics
VO2 Max: Cardiovascular fitness indicator
๐ป Usage with Claude Desktop
Build the project:
bun run buildAdd to your Claude Desktop config (
~/Library/Application Support/Claude/claude_desktop_config.json):{ "mcpServers": { "ultrahuman": { "command": "node", "args": ["/path/to/your/project/dist/main.js"], "env": { "ULTRAHUMAN_AUTH_TOKEN": "your_token_here", "ULTRAHUMAN_USER_EMAIL": "your_email@example.com" } } } }
๐งช Testing
You can test the server by running it directly:
node dist/main.jsThe server will listen for MCP requests on stdio and provide the ultrahuman_metrics tool to fetch health data from the API.
๐ ๏ธ Development
Run tests:
bun testFormat code:
bun run formatLint code:
bun run lintBuild project:
bun run build
๐ Version Management
This project uses standard-version for automated version management. Run bun run release to create a new version.
Commit Message Format
feat: New feature (bumps minor version)fix: Bug fix (bumps patch version)BREAKING CHANGE: Breaking change (bumps major version)
๐ฆ Publishing to npm
Ensure you're logged in to npm:
npm loginBuild the project:
bun run buildPublish the package:
npm publish
Installing from npm (after publishing)
Add to your Claude Desktop config:
{
"mcpServers": {
"ultrahuman": {
"command": "npx",
"args": ["-y", "ultrahuman-mcp"],
"env": {
"ULTRAHUMAN_AUTH_TOKEN": "your_token_here",
"ULTRAHUMAN_USER_EMAIL": "your_email@example.com"
}
}
}
}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.
Latest Blog Posts
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/Monasterolo21/Ultrahuman-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server