A Model Context Protocol (MCP) server that provides access to Ultrahuman API data. This server allows AI assistants and applications to interact with Ultrahuman health and fitness data through standardized MCP tools.
- Complete Health Metrics Access: Sleep, movement, heart rate, HRV, glucose, and more
- Specialized Tools: Dedicated tools for different data types (sleep, movement, glucose, heart metrics)
- Error Handling: Robust error handling with detailed error messages
- Date Validation: Automatic validation of date formats
- Environment Configuration: Flexible configuration through environment variables
get_default_user_metrics(date)- Get all health metrics for default user (from env) on a specific dateget_user_metrics(email, date)- Get all health metrics for a user on a specific dateget_sleep_data(email, date)- Get sleep-specific metricsget_movement_data(email, date)- Get movement and activity dataget_glucose_metrics(email, date)- Get glucose-related metricsget_heart_metrics(email, date)- Get heart rate, HRV, and recovery data
ultrahuman://api-info- Information about the Ultrahuman Partnership API
The server provides access to the following health metrics:
- Sleep Data - Sleep patterns, quality, duration
- Movement Data - Activity levels, movement patterns
- Heart Rate - Continuous heart rate monitoring
- HRV - Heart Rate Variability measurements
- Temperature - Body temperature readings
- Steps - Daily step count
- Glucose - Blood glucose levels (from CGM)
- Metabolic Score - Overall metabolic health score
- Glucose Variability (%) - Blood sugar stability
- Average Glucose (mg/dL) - Daily glucose average
- HbA1c - Long-term glucose control indicator
- Time in Target (%) - Time spent in target glucose range
- Recovery Index - Recovery status metrics
- Movement Index - Movement quality assessment
- VO2 Max - Cardiovascular fitness measure
-
Ultrahuman API Access:
- Authorization key (40-character alpha-numeric string)
- Data sharing code from users
- User email with granted access
- 📋 See detailed setup instructions: API_SETUP.md
- Contact [email protected] for API access
- API documentation: https://blog.ultrahuman.com/blog/accessing-the-ultrahuman-partnership-api/
-
Python 3.11+
- Clone this repository:
git clone https://github.com/Vodolazkyi/Ultrahuman-Server.git
cd Ultrahuman-Server- Install dependencies:
pip install -r requirements.txt- Configure environment variables:
cp env.example .env
# Edit .env with your Ultrahuman API credentials- Run the server:
python main.pyThe server will start on http://localhost:8000/mcp by default.
| Variable | Description | Default |
|---|---|---|
ULTRAHUMAN_AUTH_KEY |
Your 40-character authorization key | Required |
ULTRAHUMAN_BASE_URL |
API base URL | https://partner.ultrahuman.com/api/v1 |
ULTRAHUMAN_DEFAULT_EMAIL |
Default user email for testing | Optional |
PORT |
Server port | 8000 |
import asyncio
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
async def main():
server_params = StdioServerParameters(
command="python",
args=["main.py"],
env={"ULTRAHUMAN_AUTH_KEY": "your_key_here"}
)
async with stdio_client(server_params) as (read, write):
async with ClientSession(read, write) as session:
# Initialize the connection
await session.initialize()
# Get user metrics
result = await session.call_tool(
"get_user_metrics",
{
"email": "[email protected]",
"date": "2024-01-15"
}
)
print(result)
if __name__ == "__main__":
asyncio.run(main())# Get all metrics for a user
result = await session.call_tool("get_user_metrics", {
"email": "[email protected]",
"date": "2024-01-15"
})# Get sleep-specific data
result = await session.call_tool("get_sleep_data", {
"email": "[email protected]",
"date": "2024-01-15"
})# Get glucose-related metrics
result = await session.call_tool("get_glucose_metrics", {
"email": "[email protected]",
"date": "2024-01-15"
})All tools return a consistent response format:
{
"success": true,
"email": "[email protected]",
"date": "2024-01-15",
"metrics": {
// ... actual metrics data
}
}On error:
{
"success": false,
"email": "[email protected]",
"date": "2024-01-15",
"error": "Error description"
}This server is configured for deployment on Railway:
- Connect your GitHub repository to Railway
- Set environment variables in Railway dashboard:
ULTRAHUMAN_AUTH_KEYULTRAHUMAN_BASE_URL(optional)
- Deploy automatically from main branch
# Build the image
docker build -t ultrahuman-mcp .
# Run the container
docker run -p 8000:8000 \
-e ULTRAHUMAN_AUTH_KEY=your_key_here \
ultrahuman-mcp- Production:
https://partner.ultrahuman.com/api/v1/metrics - Staging:
https://www.staging.ultrahuman.com/api/v1/metrics
The server includes comprehensive error handling:
- Authentication Errors: Invalid or missing authorization key
- Validation Errors: Invalid email format or date format
- API Errors: HTTP errors from Ultrahuman API
- Network Errors: Connection timeouts or network issues
- API keys are managed through environment variables
- All API requests use HTTPS
- No sensitive data is logged or cached
We welcome contributions! Please feel free to:
- Fork the repository
- Create a feature branch:
git checkout -b feature-name - Commit your changes:
git commit -am 'Add feature' - Push to the branch:
git push origin feature-name - Submit a pull request
This project is licensed under the MIT License. See the LICENSE file for details.
For issues related to:
- MCP Server: Open an issue in this repository
- Ultrahuman API: Contact Ultrahuman support
- FastMCP: Check the FastMCP documentation
For maximum visibility and SEO optimization, see GITHUB_SETUP.md for detailed instructions on:
- Configuring GitHub About section with proper tags
- SEO optimization for search engines
- Adding to MCP showcases and awesome lists
- Ultrahuman API Documentation
- FastMCP Framework
- Model Context Protocol
- Awesome MCP - Add your project here!