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 | 이름과 언어를 입력하면 인사말을 반환합니다. |
| calculateA | 두 숫자에 대해 사칙연산(+, -, *, /)을 수행합니다. |
| timeA | 현재 날짜와 시간을 반환합니다. |
| geocodeA | 도시 이름으로 위도·경도 좌표를 조회합니다. |
| weatherB | 위도·경도 좌표로 현재 날씨를 조회합니다. |
| generate-imageA | HuggingFace FLUX.1-schnell 모델로 이미지를 생성합니다. HF_TOKEN 환경변수가 필요합니다. |
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 서버의 이름, 버전, 등록된 도구 목록 등 서버 메타데이터를 반환합니다. |
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose (arithmetic, image generation, geocoding, greeting, time, weather), with no overlap or ambiguity in their intended use.
Most tool names are single-word verbs (calculate, geocode, greet, time, weather), with one hyphenated compound (generate-image). This is mostly consistent but the hyphenated name is a minor deviation.
With 6 tools, the count is reasonable for a boilerplate example server. It is neither too sparse nor overly heavy for illustrating various capabilities.
As a boilerplate, the tool set does not target a specific domain, so completeness is inherently neutral. The tools cover basic utility examples but lack any overarching purpose or desired workflow.