typescript-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 |
|---|---|
| greetA | 이름과 언어를 입력하면 인사말을 반환합니다. |
| calcA | 두 숫자와 연산자를 입력받아 사칙연산 결과를 반환합니다. |
| timeA | 특정 도시의 현재 시간을 반환합니다. 도시를 지정하지 않으면 전체 도시 목록을 반환합니다. |
| geocodeA | 도시 이름이나 주소를 입력받아 위도와 경도 좌표를 반환합니다. (Nominatim OpenStreetMap API 사용) |
| get-weatherA | 위도/경도 좌표와 예보 기간을 입력받아 Open-Meteo API를 통해 현재 날씨와 일별 예보를 반환합니다. |
| generate-imageA | HuggingFace Inference API를 사용해 텍스트 프롬프트로 이미지를 생성합니다. (모델: FLUX.1-schnell) |
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 performs a completely distinct function with no functional overlap: geocoding, weather, image generation, greeting, arithmetic, and time retrieval. An agent can easily select the correct tool based on the task.
Tool names are all lowercase and use hyphens for multi-word names, but there is a mix of single verbs (geocode, greet, calc, time) and verb-noun compounds (get-weather, generate-image). The pattern is mostly consistent but not uniform.
With 6 tools, the count is well within the ideal range for a general-purpose utility server. Each tool serves a unique, practical purpose, and the set is neither bloated nor too thin.
The tools are self-contained and each fully covers its individual function. Since the server appears to be a general utility/demo toolkit with no specific domain, there are no obvious gaps in lifecycle or CRUD operations, though the set lacks a unifying theme.