tiny-go-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TINY_GO_MCP_VERBOSE | No | Set to '1' to enable verbose startup log lines. |
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
} |
| logging | {} |
| prompts | {
"listChanged": true
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| addA | Demo: adds two integers. Use only to test MCP addition calls; do not use for real math—compute in the agent instead. Use add (not subtract or greet) when verifying addition wiring. |
| greetA | Demo: returns a greeting string. Use only to test MCP text tools; do not use for user-facing messages—reply in chat instead. Use greet (not add or subtract) for hello/welcome integration tests. |
| subtractA | Demo: subtracts B from A. Use only to test MCP subtraction calls; do not use for real math—compute in the agent instead. Use subtract (not add or greet) when verifying subtraction wiring. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| code_review | Demo: code review prompt template. Use to test prompts/get; do not use for real reviews—use your agent workflow instead. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| info | Demo: static server metadata. Use to test resources/read; do not use for live config—read env or APIs instead. |
TDQS
Scored across 3 tools
Each tool has a clearly distinct function (addition, subtraction, greeting) and descriptions explicitly guide differentiation and testing scenarios.
All tool names are single lowercase verbs, following a consistent pattern.
3 tools is appropriate for a simple demo/testing server, covering core operations without excess.
The set covers basic arithmetic and greeting for demo purposes; minor gaps like multiplication exist but are unnecessary for the stated goal.