Blood Pressure Tool
Click on "Deploy 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., "@Blood Pressure Toollog a blood pressure reading of 120/80 with notes feeling well"
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.
Blood Pressure Tool
This repository contains a simple MCP server for managing blood pressure readings in Open WebUI, or other tools that can use MCP. It allows users to create, read, update, and delete blood pressure records.

Installation
Database Setup
Before using bptool, set up the postgresql database, for example:
psql -h dbserver -U dbadmin bptool_db <create_schema.sqlInstall bptool MCP server
To work with Open WebUI, bptool needs to be started by mcpo:
git clone https://github.com/mclarkson/bptool.git
cd bptool
cp env.sample .env
# Edit .env with database details
uvx --with psycopg2-binary --with . mcpo --port 8000 -- python -m bptool.apiRunning locally
# Ensure `.env` is correct and in the current directory
python -m venv venv
. venv/bin/activate
pip install -e .
mcpo --port 8000 -- python -m bptool.apiInstall bptool command line tool
pip install -e .Related MCP server: garmin-mcp
Usage
Command Line Interface
# Help
bptool -h
# Create a reading
bptool create --systolic 120 --diastolic 80 --notes "Feeling well"
# Read recent readings
bptool read --limit 5Open WebUI
Admin Panel -> Settings -> External Tools -> Add Connection
Type = 'OpenAPI'
URL = 'http://:8000'
Auth = 'Bearer'
To match mcpo
--api-keysetting, or none if not set.
TODO
Add code for saving data as the user, not default_user.
Add the prompt.
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for Withings health data — sleep, activity, heart, and body metrics.
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
List, read, edit, and deploy your GenMB AI-generated apps from any MCP client.
Hosted MCP server for the Healthie EHR & telehealth API: patients, appointments, charting, tasks.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for the Withings Health API with per-user OAuth2, enabling users to securely access their own health data (measures, activity, sleep, workouts, heart rate, devices, and goals) and optionally add measurements.12Apache 2.0
- FlicenseAqualityCmaintenanceProvides read-only access to your Garmin Connect health data, including sleep, HRV, body battery, stress, training readiness, and activities, through an MCP server.14-
- FlicenseNot gradedqualityCmaintenanceExposes health metrics from the Sapphire Wellness App to AI assistants via MCP, enabling queries on activity, blood pressure, glucose, heart rate, sleep, and SpO2 data.-
- FlicenseNot gradedqualityCmaintenanceMCP server that exposes health metrics from the Sapphire Wellness App to AI assistants, enabling natural language queries for activity, blood pressure, glucose, heart rate, sleep, and SpO2 data.-