FitSlot MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_LEVEL | No | Nível de log (DEBUG, INFO, WARN, ERROR) | INFO |
| FITSLOT_API_KEY | No | Chave de API (opcional) | |
| FITSLOT_API_URL | No | URL da API FitSlot | https://api.fitslot.com |
| FITSLOT_API_TIMEOUT | No | Timeout para requisições (em ms) | 30000 |
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
| Name | Description |
|---|---|
| create_ticketC | Create a new support ticket in the FitSlot system |
| list_ticketsC | List all tickets for a user, optionally filtered by status |
| get_ticketC | Get detailed information about a specific ticket |
| update_ticketC | Update an existing ticket (status, description, or priority) |
| close_ticketB | Close a ticket by setting its status to closed |
| ask_supportC | Ask a support question and get helpful responses with related FAQs and suggested actions |
| search_faqsC | Search for FAQs based on keywords or questions |
| get_faq_categoriesB | Get all available FAQ categories |
| get_faqs_by_categoryB | Get all FAQs for a specific category |
| get_all_faqsB | Get all available FAQs across all categories |
| analyze_bioimpedance_pdfC | Analyze a bioimpedance PDF document and extract health metrics with recommendations |
| analyze_bioimpedance_pdf_base64C | Analyze a bioimpedance PDF document from base64-encoded data |
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 12 tools
Each tool has a clearly distinct purpose with no overlap. For example, analyze_bioimpedance_pdf and analyze_bioimpedance_pdf_base64 handle different input formats for the same analysis, while support tools (create_ticket, update_ticket, close_ticket) and FAQ tools (get_all_faqs, search_faqs, etc.) are well-separated. An agent can easily distinguish between ticket management, FAQ retrieval, and document analysis functions.
All tools follow a consistent verb_noun pattern with snake_case throughout. Examples include create_ticket, get_faq_categories, and analyze_bioimpedance_pdf. This predictability makes it easy for agents to understand tool purposes and navigate the set without confusion from mixed naming conventions.
With 12 tools, the count is well-scoped for the server's purpose of handling support tickets, FAQs, and bioimpedance analysis. Each tool earns its place by covering distinct aspects of these domains, such as ticket lifecycle management, FAQ categorization and search, and document processing. This is neither too sparse nor bloated.
The tool set provides complete coverage for its inferred domains. For support tickets, it includes create, get, list, update, and close operations. For FAQs, it covers retrieval by category, search, and listing all. The bioimpedance analysis tools handle both file and base64 inputs. There are no obvious gaps, ensuring agents can perform end-to-end workflows without dead ends.