aidoo-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AIDOO_GYM_ID | No | Standard Studio-ID für Abfragen | |
| AIDOO_API_KEY | Yes | Ihr Aidoo API Bearer Token | |
| AIDOO_BASE_URL | No | API URL | https://api.aidoo-online.de:10015 |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| aidoo_list_membersA | Liste alle Mitglieder auf oder filtere nach Kriterien. Kann mit Extensions erweitert werden um verknüpfte Daten (Verträge, etc.) einzuschließen. |
| aidoo_get_memberB | Rufe Details eines einzelnen Mitglieds ab. |
| aidoo_create_memberB | Erstelle ein neues Mitglied im System. |
| aidoo_update_memberC | Aktualisiere ein bestehendes Mitglied. |
| aidoo_list_contractsB | Liste alle Verträge auf oder filtere nach Kriterien. |
| aidoo_get_contractA | Rufe Details eines einzelnen Vertrags ab. |
| aidoo_get_expiring_contractsA | Finde alle Verträge die in einem bestimmten Zeitraum auslaufen. |
| aidoo_list_classesB | Liste alle Kurse auf oder filtere nach Kriterien. |
| aidoo_get_classA | Rufe Details eines einzelnen Kurses ab. |
| aidoo_get_scheduleB | Rufe den Kursplan für einen bestimmten Zeitraum ab. |
| aidoo_list_bookingsB | Liste alle Buchungen auf oder filtere nach Kriterien. |
| aidoo_get_member_bookingsB | Rufe alle Buchungen eines bestimmten Mitglieds ab. |
| aidoo_create_bookingB | Erstelle eine neue Kursbuchung für ein Mitglied. |
| aidoo_cancel_bookingA | Storniere eine bestehende Buchung. |
| aidoo_list_gymsB | Liste alle Studios auf. |
| aidoo_get_gymB | Rufe Details eines Studios ab. |
| aidoo_list_trainersC | Liste alle Trainer auf. |
| aidoo_get_trainerB | Rufe Details eines Trainers ab. |
| aidoo_list_checkinsC | Liste alle Check-ins auf oder filtere nach Kriterien. |
| aidoo_create_checkinB | Erstelle einen Check-in für ein Mitglied. |
| aidoo_list_webhooksB | Liste alle registrierten Webhooks auf. |
| aidoo_create_webhookA | Erstelle einen neuen Webhook um über Änderungen benachrichtigt zu werden. |
| aidoo_delete_webhookB | Lösche einen registrierten Webhook. |
| aidoo_get_member_statisticsB | Rufe Statistiken für ein Mitglied ab (Besuche, Kurse, etc.). |
| aidoo_get_gym_statisticsC | Rufe Statistiken für ein Studio ab. |
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 25 tools
Each tool targets a distinct resource and action, with clear separation between list/get/create/update/cancel/delete operations. Even the convenience get_member_bookings and get_expiring_contracts are clearly distinct from their list counterparts by specific filtering intent.
Tools follow a consistent aidoo_verb_noun pattern, but get is used for both single-item fetches and list-returning queries (e.g., get_expiring_contracts, get_member_bookings), while list is reserved for standard collection listings. This is a minor deviation from the ideal verb-per-action style.
With 25 tools, the server is on the heavier side, covering multiple domain areas (members, contracts, bookings, checkins, etc.). While each tool has a purpose, the count feels large for a single server and might benefit from splitting into focused services.
The surface provides solid read coverage for all major resources and write operations for members, bookings, checkins, and webhooks. However, there is no create/update/delete for contracts, classes, trainers, or gyms, leaving notable lifecycle gaps for core domain objects.