Simple MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AVIATIONSTACK_API_KEY | No | Your API key from AviationStack for real flight data. If not provided, the server will use mock data. |
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 |
|---|---|
| echoB | Echo back the input text |
| add_numbersB | Add two numbers together |
| get_current_timeB | Get the current date and time |
| get_flight_statusB | Get the latest status of a flight using flight number |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Server Information | Information about this MCP server |
| Hello Greeting | A simple hello greeting |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: mathematical addition, text echoing, time retrieval, and flight status checking. There is no overlap or ambiguity between these functions, making tool selection straightforward for an agent.
The naming follows a consistent verb_noun pattern (e.g., add_numbers, get_current_time) with one minor deviation: 'echo' is a verb-only name without a noun, which slightly breaks the pattern but remains readable and intuitive.
With only 4 tools, the server feels thin and lacks a cohesive domain focus, as it mixes unrelated utilities (math, text, time, flights). While the count is reasonable for a simple server, it suggests a lack of depth or clear scope.
The toolset is severely incomplete for any coherent domain; it appears as a random collection of utilities with no clear coverage. For example, if targeting travel, it lacks tools for booking or searching flights, and as a general utility server, it misses common operations like file handling or data conversion.