Jeju Humanities Tour 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": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_regionsA | 제주도에서 투어가 가능한 지역 목록을 조회할 때 사용. 사용자가 "어떤 지역이 있어?", "지역 목록 알려줘"처럼 지역 자체를 물어볼 때 호출한다. 인자는 없다. |
| get_spotA | 특정 관광 스팟(장소) 한 곳의 상세 정보를 조회할 때 사용. 사용자가 스팟 이름을 콕 집어 "OO는 어떤 곳이야?", "OO 정보 알려줘", "OO 몇 시에 열어?"처럼 장소 하나에 대해 물어볼 때 호출한다. name에는 사용자가 말한 스팟 이름(정확한 이름 또는 그 일부)을 그대로 넣는다. |
| recommend_courseA | 특정 지역·테마·소요 시간 제약으로 인문학 투어 코스를 추천할 때 사용. 사용자가 "OO에서 XX 테마로 N시간 이내 코스 추천해줘"처럼 지역과 테마, 시간 제약을 함께 이야기하며 여러 스팟을 묶은 '코스'를 원할 때 호출한다. (스팟 하나만 물어보면 get_spot을 대신 사용할 것.) courses·course_spots·spots를 조인해서 조건에 맞는 코스 1개를 방문 순서(seq)대로 정리해 반환한다. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool serves a distinct purpose: listing regions, getting spot details, and recommending courses. No overlap exists, so an agent can clearly select the correct tool.
All tools follow a consistent verb_noun snake_case pattern: list_regions, get_spot, recommend_course. No deviations or mixed conventions.
Three tools is well-scoped for a humanities tour server: regions, spots, and courses. Each tool earns its place without redundancy or excessive minimality.
Core operations are covered, but missing a tool to list spots within a region or list all courses. Agents may struggle to discover spots without a listing tool, creating a minor gap.