get_feed
제주돌담 최신 피드를 가져옵니다. 카테고리 필터 가능.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 페이지 번호 (기본 1) | |
| limit | No | 결과 수 (기본 10) | |
| category | No | 카테고리 이름('부동산','구인구직' 등) 또는 UUID (선택) |
제주돌담 최신 피드를 가져옵니다. 카테고리 필터 가능.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 페이지 번호 (기본 1) | |
| limit | No | 결과 수 (기본 10) | |
| category | No | 카테고리 이름('부동산','구인구직' 등) 또는 UUID (선택) |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full behavioral disclosure burden, but it only says 'fetch latest feed' and 'category filter possible.' It does not disclose read-only nature, ordering behavior, default pagination, category matching semantics, or what the response contains.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short Korean sentences are tightly packed: resource, action, and key capability. No filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read tool with no annotations and no output schema, the description is thin. An agent still does not know what a feed entry looks like, how categories are matched, or how pagination behaves.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents page, limit, and category. The description adds only the category filtering concept, which is useful but not substantial enough to exceed the baseline 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description states a specific action ('가져옵니다' / fetch) on a specific resource ('제주돌담 최신 피드' / latest Jeju DolDam feed), with category filtering. This clearly distinguishes it from siblings like get_post (single post) and search_posts.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies it is for browsing the latest feed with an optional category filter, but it does not explicitly state when to choose this over search_posts/search_property_listings or any exclusions. No alternative tools are named.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a distinct resource or workflow (posts, facilities, jobs, property, personas, stats), and descriptions clarify normal-user vs persona posting and feed vs keyword vs by-ID retrieval. The only mild overlap is create_post vs post_as_persona, both create posts, but the persona-specific flow is clearly documented.
Tool names follow a consistent snake_case verb_noun pattern (get_, list_, search_, create_, upsert_). Minor deviations are find_facilities instead of search_facilities and post_as_persona as a prepositional verb, but these are easy to predict.
16 tools is slightly above the typical well-scoped 3-15 range, but the breadth reflects multiple verticals (community posts, jobs, property, facilities, stats). Each tool has a role, so the count feels reasonable rather than bloated.
The set covers read/search/create for posts and upsert/search for jobs and property, plus supporting listings and stats. However, there are no update/delete operations for posts or personas, no comment tools despite comment counts being mentioned, and no delete for structured listings, leaving notable lifecycle gaps.