TypeScript MCP Server Boilerplate
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 |
|---|---|
| greetA | 이름과 언어를 입력하면 인사말을 반환합니다. |
| calcA | 두 숫자와 연산자를 입력받아 사칙연산 결과를 반환합니다. |
| timeA | 현재 시각을 반환합니다. 타임존을 지정할 수 있습니다. |
| geocodeA | 도시명 또는 주소를 입력받아 위도·경도 좌표를 반환합니다. (Nominatim OpenStreetMap) |
| get-weatherA | 위도·경도 좌표와 예보 기간을 입력받아 현재 날씨와 일별 예보를 반환합니다. (Open-Meteo) |
| generate-imageA | HuggingFace Inference API를 사용해 텍스트 프롬프트로 이미지를 생성합니다. (FLUX.1-schnell via Together) |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| code-review | 코드를 입력받아 버그, 품질, 보안, 성능 등의 관점에서 리뷰 메시지를 생성합니다. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| server-info | MCP 서버 이름, 버전, 등록된 도구 목록을 반환합니다. |
| server-status | 현재 시각, Node.js 버전, 프로세스 uptime, 메모리 사용량을 반환합니다. |
TDQS
Scored across 6 tools
Each tool has a completely distinct purpose: greeting, geocoding, weather, image generation, arithmetic, and time. There is no overlap or ambiguity between the tool boundaries.
Naming is inconsistent: bare verbs like 'greet' and 'calc', single words like 'geocode' and 'time', and hyphenated phrases like 'get-weather' and 'generate-image' are mixed together. There is no predictable verb_noun or unified style.
Six tools is a well-scoped size for a boilerplate demo server. Each tool demonstrates a different capability without excessive overlap or bloat.
As a boilerplate/demo set, the tools cover a variety of common MCP integration patterns, but the set has no coherent domain or lifecycle model. There are no CRUD/resource-style tools, which is a notable gap for a general-purpose server template.