own-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| calculateA | Evaluate a basic arithmetic expression (+, -, *, /, parentheses, decimals). Example: '(4 + 5) * 2 / 3'. |
| get_current_timeA | Get the current date and time, optionally in a specific IANA timezone (e.g. 'Asia/Kolkata'). Defaults to UTC. |
| get_weatherA | Get the current live weather for a city or place name (e.g. 'Muzaffarnagar' or 'Tokyo, Japan'). Uses the free Open-Meteo API. |
| add_noteA | Save a short text note with a title, persisted to disk so it survives server restarts. |
| list_notesA | List all saved notes with their ids, titles, and creation times. |
| delete_noteA | Delete a saved note by its id. |
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 6 tools
Each tool has a clearly distinct purpose: arithmetic, time, weather, and note management. There is no overlap or ambiguity between any of the six tools.
All tool names follow a consistent lowercase verb-first pattern such as get_weather, add_note, list_notes, and delete_note. The single verb 'calculate' is slightly generic but still fits the naming style.
Six tools is a well-scoped size for a small utility server. Each tool serves a distinct function without excess or redundancy.
The note feature covers add, list, and delete, but there is no way to retrieve the full content of a single note or update it. Since notes are simple and list provides metadata, this is a minor gap rather than a critical one.