MCP server for InBody body-composition data using the mobile REST API
Project description
inbody-api-mcp
Hosted version for Claude.ai, ChatGPT, and Grok coming soon. Join the waitlist →
An MCP (Model Context Protocol) server for InBody body-composition data, built on the reverse-engineered mobile REST API used by the InBody Android app.
InBody has no public API and no web UI for personal scan data. This server talks to the same JSON REST endpoints the mobile app uses, exposing your body composition history (body fat, muscle mass, body water, segmental impedance) to any MCP client.
Features
- Profile -- identity and baseline metrics (height, weight, age, gender)
- Scan history -- chronological summaries (weight, BMI, % body fat, muscle mass)
- Full scan metrics -- complete body composition (BCA), BMI/%fat/muscle with normal ranges (MFA), and segmental/multi-frequency impedance (IMP)
- Automatic region routing -- resolves the correct regional API host from your country code
- Automatic re-authentication -- caches the 24h JWT and re-logs in on expiry
Quick Start
1. Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
2. Set credentials
export INBODY_LOGIN_ID="3026323617" # registration phone number, digits only
export INBODY_LOGIN_PW="your-password"
export INBODY_COUNTRY_CODE="US" # ISO country code (default US)
INBODY_LOGIN_IDis the phone number used at registration, not your email -- digits only, no country code or+(e.g.3026323617). InBody keys login on the phone number; the email is only returned as profile data. An email value will fail login withEmptyData.
3. Configure your MCP client
uvx downloads and runs the server on demand -- no separate install step.
OpenCode (opencode.json)
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"inbody": {
"type": "local",
"command": ["uvx", "inbody-api-mcp"],
"environment": {
"INBODY_LOGIN_ID": "{env:INBODY_LOGIN_ID}",
"INBODY_LOGIN_PW": "{env:INBODY_LOGIN_PW}",
"INBODY_COUNTRY_CODE": "US"
},
"enabled": true
}
}
}
Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"inbody": {
"command": "uvx",
"args": ["inbody-api-mcp"],
"env": {
"INBODY_LOGIN_ID": "3026323617",
"INBODY_LOGIN_PW": "your-password",
"INBODY_COUNTRY_CODE": "US"
}
}
}
}
Available Tools
| Tool | Description |
|---|---|
get_profile |
User identity and baseline metrics (height, weight, age, gender) |
get_scan_count |
Total number of scans on the account |
list_scans |
Chronological scan summaries (weight, BMI, % body fat, muscle mass) |
get_scan |
Full metric set for one scan (BCA / MFA / IMP blocks) |
This server is read-only: no write or delete endpoints are exposed.
How It Works
This server communicates with the regional *.lookinbody.com REST API -- the
same backend used by the InBody Android app (v2.8.31). The API was
reverse-engineered by capturing app traffic with mitmproxy and confirming
payload shapes against the live API.
The auth flow:
POST /CommonAPI/GetCountryInfoV2(onappapicommon.lookinbody.com) returns a per-country host table. TheType == "API"row for your ISO country code gives the regional API base (US ->appapiusav2.lookinbody.com) and the numeric phone code used in request bodies.POST /V2/Main/GetLoginWithSyncDataPartV2exchanges the login ID + password for a 24-hour JWT, a refresh token, and the account UID.- Subsequent calls send
Authorization: Bearer <JWT>. The client re-authenticates automatically when the token expires.
Each scan record nests three blocks: BCA (body composition analysis -- body water, protein, mineral, fat, segmental water), MFA (BMI, % body fat, skeletal muscle mass, WHR with normal ranges), and IMP (raw impedance per frequency and body segment).
Python API
You can use the client directly:
from inbody_api_mcp.client import InBodyClient
client = InBodyClient()
# Total number of scans
count = client.get_scan_count()
# Recent scans (newest first), paginated
scans = client.get_scans(number=20, index=0)
# User profile
profile = client.get_user_info()
Transport
stdio only. MCP clients (OpenCode, Claude Desktop) spawn the stdio process
directly via uvx/uv.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file inbody_api_mcp-0.1.0.tar.gz.
File metadata
- Download URL: inbody_api_mcp-0.1.0.tar.gz
- Upload date:
- Size: 37.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c2bbe1c481e4a57718031a7a7a887add04b931dcddc886dc97232108f2039cd
|
|
| MD5 |
dae729adbf506ff7d2eb9ac567cf8a76
|
|
| BLAKE2b-256 |
2a2b017b80cde401c7ebff4f0c9b7710b2e6f3141edd16ae74eb0dec7e11511a
|
Provenance
The following attestation bundles were made for inbody_api_mcp-0.1.0.tar.gz:
Publisher:
publish.yml on rwestergren/inbody-api-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
inbody_api_mcp-0.1.0.tar.gz -
Subject digest:
7c2bbe1c481e4a57718031a7a7a887add04b931dcddc886dc97232108f2039cd - Sigstore transparency entry: 1871906957
- Sigstore integration time:
-
Permalink:
rwestergren/inbody-api-mcp@f87f2b3693d602a9b0ff74f48a3118bbdfd13ca6 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/rwestergren
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f87f2b3693d602a9b0ff74f48a3118bbdfd13ca6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file inbody_api_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: inbody_api_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
383c6b78d7eb59b8cc0e0979387b7716b98258614f404ece78f981308edde388
|
|
| MD5 |
d08123994e35957837df58b1cc14e54d
|
|
| BLAKE2b-256 |
6d43ce7c88359683a1e260165facd43e70c11bc53e65da186f164b53bf34e089
|
Provenance
The following attestation bundles were made for inbody_api_mcp-0.1.0-py3-none-any.whl:
Publisher:
publish.yml on rwestergren/inbody-api-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
inbody_api_mcp-0.1.0-py3-none-any.whl -
Subject digest:
383c6b78d7eb59b8cc0e0979387b7716b98258614f404ece78f981308edde388 - Sigstore transparency entry: 1871907046
- Sigstore integration time:
-
Permalink:
rwestergren/inbody-api-mcp@f87f2b3693d602a9b0ff74f48a3118bbdfd13ca6 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/rwestergren
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f87f2b3693d602a9b0ff74f48a3118bbdfd13ca6 -
Trigger Event:
release
-
Statement type: