Skip to main content
Glama
lucas-1000

MCP Glucose Server

by lucas-1000

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
USER_IDNoOptional default user identifier
API_SECRETYesAPI secret for authentication
STORAGE_API_URLYesThe URL of the storage API instance

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

Server capabilities have not been inspected yet.

Tools

Functions exposed to the LLM to take actions

NameDescription
get_glucose_readingsC

Get glucose/blood sugar readings for a user within a date range. Returns glucose values in mg/dL with timestamps and sources.

get_latest_glucoseA

Get the most recent glucose/blood sugar reading for a user. Returns value, unit, timestamp, and source.

get_glucose_statsA

Get glucose statistics (count, average, min, max) for a user within a date range. Useful for understanding glucose trends and patterns.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.6/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: get_glucose_readings retrieves raw readings, get_glucose_stats provides aggregated statistics, and get_latest_glucose fetches the single most recent reading. There is no overlap in functionality, making it easy for an agent to select the appropriate tool based on the specific need.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with 'get_' as the prefix and descriptive nouns (readings, stats, latest_glucose). The naming is uniform, predictable, and enhances readability, ensuring agents can easily understand and use the toolset.

Tool Count4/5

With 3 tools, the server is well-scoped for its glucose monitoring purpose, covering key retrieval operations. However, it feels slightly thin as it lacks tools for creating, updating, or deleting glucose data, which might be expected in a full CRUD lifecycle, though this is reasonable for a read-only server.

Completeness3/5

The toolset is complete for read-only operations, offering raw data, statistics, and the latest reading. However, there are notable gaps in the surface, such as missing create, update, or delete tools, which limits agents to retrieval-only workflows and could cause failures in scenarios requiring data modification.

Maintenance

ActivityInactive
ResponsivenessNo issues