MCP Starter 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 |
|---|---|
| add_numbersA | Adds two numbers together and returns the result. |
| get_system_statusA | Retrieves system runtime status including Node version, OS, uptime, and timestamp. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| code_review | Generates a structured prompt to ask an LLM for a code review. |
| summarize_notes | Generates a prompt asking the LLM to summarize raw meeting or research notes. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| welcome-info | |
| app-settings |
TDQS
Scored across 2 tools
add_numbers and get_system_status have completely separate purposes, so an agent would not confuse them. Each tool's name and description uniquely identify its intended action.
Both tools use a consistent verb_noun snake_case pattern: add_numbers and get_system_status. This makes the naming predictable and easy to extend.
Two tools is on the low end and feels thin for an MCP server. However, for a starter server it is defensible, so the count is borderline rather than unreasonable.
The two tools cover what a minimal starter server would likely demonstrate: a computational example and a system information example. There are no obvious missing operations given the small scope, though the surface is not broad enough for general-purpose use.