Sensor Bio MCP Server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SENSR_TZ | No | Timezone for 'today' calculations (default: America/Chicago) | |
| SENSR_SCOPE | No | OAuth2 scope (optional) | |
| SENSR_API_KEY | No | Alias for SENSR_ORG_TOKEN | |
| SENSR_BASE_URL | No | Override API base URL (default: https://api.sensorbio.com) | |
| SENSR_CLIENT_ID | No | OAuth2 client ID | |
| SENSR_ORG_TOKEN | No | Organization API token (recommended) | |
| SENSR_CLIENT_SECRET | No | OAuth2 client secret |
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
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_usersA | List organization users. Params:
Returns: Sensr /v1/organizations/users response |
| get_user_idsB | Get all organization user IDs. Returns /v1/organizations/users/ids |
| get_user_by_emailA | Find a user by email (exact match preferred). Params:
Returns: {data: user|null} or {error:...} |
| get_user_profileA | Get a specific user's full profile by user ID. Params:
Returns: {data: user|null} or {error:...} |
| search_userB | Search for users by a free-text query (name/email). Params:
Returns: Sensr /v1/organizations/users response |
| get_sleepA | Get sleep for a user. Accepted date inputs (mutually exclusive):
Other params:
Returns: {range, results:[{date,data}], summary} |
| get_scoresA | Get scores for a user. Accepted date inputs (mutually exclusive):
Returns: {range, results:[{date,data}], summary} |
| get_activitiesA | Get activities for a user with optional date/timestamp filtering. Params:
Returns: {data, next_cursor, has_more, next_url} |
| get_biometricsA | Get biometrics for a user with optional date/timestamp filtering. Params:
Returns: {data, next_cursor, has_more, next_url} |
| get_caloriesA | Get calorie details for a user. Params:
Returns: Sensr /v1/calorie/details response |
| get_org_sleep_summaryA | Bulk: sleep summary across users in the org. Date selection (mutually exclusive): date OR (start_date+end_date) OR days. Params:
Returns: {range, users:[{user_id,days:[{date,data}],summary}], errors} |
| get_org_scores_summaryA | Bulk: scores summary across users in the org. Date selection (mutually exclusive): date OR (start_date+end_date) OR days. Params:
Returns: {range, users:[{user_id,days:[{date,data}],summary}], errors} |
| debug_requestA | Low-level debugging helper: make a GET request and return {status, headers_subset, body_preview}. Params:
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 13 tools
Each tool targets a distinct resource or action: user lookups by email, ID, or query; sleep, scores, biometrics, activities, calories are separate data types; bulk summaries are distinct; debug_request is a utility. No overlapping purposes.
All tools follow snake_case with a consistent verb_noun pattern: get_*, list_*, search_*, debug_*. No mixing of camelCase or inconsistent verb styles.
13 tools is well within the ideal 3-15 range for a focused sensor bio API. Each tool serves a clear purpose without being excessive or insufficient.
The tool surface covers user management (lookup, search, list) and key health data (sleep, scores, biometrics, activities, calories) both individually and in bulk for sleep and scores. Minor omission: no bulk versions for biometrics, activities, or calories, but core workflows are complete.