fitatu-wrapper
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FITATU_APP_OS | No | Operating system (optional). | |
| FITATU_API_KEY | No | API key for Fitatu (optional, used only for certain authentication flows). | |
| FITATU_APP_UUID | No | App UUID (optional). | |
| FITATU_PASSWORD | Yes | Your Fitatu account password. | |
| FITATU_USERNAME | Yes | Your Fitatu account email/username. | |
| FITATU_API_SECRET | No | API secret for Fitatu (optional). | |
| FITATU_APP_LOCALE | No | Locale (optional). | |
| FITATU_APP_VERSION | No | App version (optional). | |
| FITATU_API_BASE_URL | No | Base URL for the Fitatu API (optional). | |
| FITATU_APP_TIMEZONE | No | Timezone (optional). | |
| FITATU_SESSION_PATH | No | Path to store session file (optional). | |
| FITATU_APP_SEARCHLOCALE | No | Search locale (optional). | |
| FITATU_APP_STORAGELOCALE | No | Storage locale (optional). | |
| FITATU_LOGIN_API_CLUSTER | No | Login API cluster (optional). | |
| FITATU_APP_LOCATION_COUNTRY | No | Country code (optional). |
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 |
|---|---|
| fitatu_loginD | – |
| fitatu_whoamiD | – |
| fitatu_logoutD | – |
| fitatu_search_foodD | – |
| fitatu_get_productD | – |
| fitatu_read_dayD | – |
| fitatu_read_day_summaryD | – |
| fitatu_add_productD | – |
| fitatu_delete_entryD | – |
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 9 tools
Each tool targets a distinct function: authentication (login/whoami/logout), food lookup (search_food/get_product), and daily log management (read_day/read_day_summary/add_product/delete_entry). The two read tools differentiate by level of detail, and add/delete are clearly opposed.
All tools follow a consistent 'fitatu_verb_noun' pattern with snake_case throughout. 'whoami' is a minor deviation but is a standard command name that fits the style.
9 tools is well within the ideal 3-15 range. Each tool addresses a core aspect of the Fitatu workflow without redundancy.
The surface covers authentication, food database search, and daily entry management comprehensively. Missing an explicit update operation for entries is a minor gap, but add/delete and multiple read modes handle most practical use cases.