simple-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
} |
| prompts | {
"listChanged": true
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_greetingB | Returns a personalized welcome message. |
| calculateA | Performs arithmetic operations (add, subtract, multiply, divide, power). |
| fetch_weatherA | Fetches live weather forecast for any city using Open-Meteo. |
| add_noteA | Stores a new note in server memory. |
| list_notesA | Lists all available notes stored in server memory. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| code_review | Analyzes source code and provides a structured, multi-dimensional code review. |
| summarize_notes | Instructs the LLM to summarize all stored notes in the server. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| system-info | Returns host platform, Node.js version, memory usage, and server uptime |
TDQS
Scored across 5 tools
Each tool addresses a distinct function: greeting, arithmetic, weather, and note management. There is no overlap or ambiguity between them.
Tool names follow a consistent snake_case verb pattern, mostly verb_noun (get_greeting, fetch_weather, add_note, list_notes). 'calculate' is a lone verb but still fits the predictable style.
Five tools is a reasonable size for a simple utility server. Each tool has a clear purpose and none feel redundant or excessive.
Core functionality for each utility is present, but note management lacks delete or update operations. This is a minor gap for a simple note-taking feature, not a critical omission.