Skip to main content
Glama
rwestergren

inbody-api-mcp

by rwestergren

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
INBODY_LOGIN_IDYesRegistration phone number, digits only (no country code or +). Used as login ID.
INBODY_LOGIN_PWYesPassword for the InBody account.
INBODY_COUNTRY_CODENoISO country code for region routing.US

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
get_profileA

Get the InBody user profile.

Returns identity and baseline body metrics (name, gender, age, height, weight, email) useful for interpreting scan results.

get_scan_countA

Get the total number of InBody scans available for the account.

list_scansA

List InBody scans with headline metrics, newest first.

Returns a slim summary per scan (date, weight, BMI, %body fat, skeletal muscle mass, body fat mass, total body water, equipment). Use get_scan with a scan's raw_datetime for the full metric set.

Args: limit: Maximum number of scans to return (default 20). offset: Pagination offset into the scan history (default 0).

get_scanA

Get the full metric set for a single InBody scan.

Returns the complete BCA (body composition), MFA (BMI/%fat/muscle with norm ranges), and IMP (segmental/multi-frequency impedance) blocks.

Args: raw_datetime: The scan's raw DATETIMES value (YYYYMMDDHHMMSS) from list_scans. Defaults to the most recent scan.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.4/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: get_profile returns user identity and baseline metrics; get_scan returns full metrics for a specific scan; get_scan_count returns the total number of scans; list_scans returns a summary list of scans. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case: get_profile, get_scan, get_scan_count, list_scans. The convention is uniform and predictable.

Tool Count5/5

With 4 tools, the server is well-scoped for an InBody API: it provides profile retrieval, scan listing, scan detail, and scan count. No unnecessary tools, and the count is appropriate for the domain.

Completeness4/5

The tool set covers the essential read operations for InBody scans and user profile. A minor gap is the lack of filtering or searching scans by date range, but the core workflow (list, get detail, count) is fully supported.

Maintenance

ActivityInactive
ResponsivenessNo issues