Youth Activity Information MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| YOUTH_API_SERVICE_KEY | Yes | Your service key for the Youth Activity Information API from the Public Data Portal |
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
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_sido_listC | 청소년 활동 정보 시도(광역자치단체) 목록을 조회합니다 |
| get_sigungu_listC | 특정 시도의 시군구(기초자치단체) 목록을 조회합니다 |
| search_youth_activitiesC | 청소년 활동 프로그램을 검색합니다. 프로그램명, 기관명, 지역, 기간 등으로 필터링 가능합니다 |
| get_facility_group_listC | 청소년 시설 그룹 목록을 조회합니다. 시도, 기관명, 기관유형으로 필터링 가능합니다 |
| echoB | 입력받은 메시지를 그대로 반환합니다 |
| get_timeB | 현재 시간을 반환합니다 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| search-guide | 청소년 활동 검색 방법을 안내하는 프롬프트 |
| region-guide | 지역 코드 조회 방법을 안내하는 프롬프트 |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| 서버 정보 | 청소년 활동 정보 서버의 기본 정보 |
| API 가이드 | 공공데이터포털 청소년 활동 정보 API 사용 가이드 |
| 시도 코드표 | 주요 시도 코드 참조표 |
TDQS
Scored across 6 tools
Most tools have distinct purposes: get_facility_group_list, get_sido_list, get_sigungu_list, and search_youth_activities each target different data retrieval operations. However, echo and get_time are utility functions that don't directly relate to the youth activity domain and could be confused as overlapping in their generic nature.
Four of the six tools follow a consistent get_* pattern (get_facility_group_list, get_sido_list, get_sigungu_list, get_time), which is clear and predictable. The remaining two tools (echo and search_youth_activities) deviate from this pattern, but the naming is still descriptive and readable.
With 6 tools, the count is reasonable for a youth activity information server. It covers core data retrieval needs without being overwhelming. However, it feels slightly thin for a comprehensive domain, as it lacks update or management operations.
The toolset provides good read-only coverage for querying youth activities, facilities, and administrative regions, but it is incomplete. There are no tools for creating, updating, or deleting activities or facilities, which limits agents to retrieval-only workflows and may cause dead ends in more complex tasks.