Skip to main content
Glama

jejusns

search_posts

제주돌담 게시글을 키워드로 검색합니다. 공백으로 구분된 여러 단어는 모두 포함(AND)으로 검색됩니다. 카테고리는 한글 이름 또는 UUID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo최대 결과 수 (기본 10)
queryYes검색 키워드
categoryNo카테고리 이름('부동산','구인구직' 등) 또는 UUID (선택)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

There are no annotations, so the description carries the full burden of behavioral disclosure. It usefully discloses that space-separated words are combined with AND and that category accepts either a Korean name or UUID. The verb '검색' implies a non-mutating read operation, but the description does not mention result ordering, whether matching applies to title/content/both, or pagination behavior beyond the schema's limit parameter.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no filler. The first sentence front-loads the core purpose, and the second packs two useful semantic details (AND behavior and category format). It is appropriately concise for a simple search tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a straightforward search tool with 3 simple parameters and no output schema, the description is nearly complete: it specifies search target, query combination behavior, category format, and the schema covers limit. The only minor gap is not explaining what the returned results look like or how they are ordered, but this is not critical for a search action.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds value by explaining that multiple whitespace-separated words in the query parameter are all required (AND semantics), which is not stated in the schema. The category-as-name-or-UUID detail is redundant with the schema but reinforces expected usage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific verb and resource: 'Search Jeju Dol-dam posts by keyword.' It is distinct from sibling search tools like search_jobs and search_property_listings because of the explicit '제주돌담 게시글' scope, and from get_post/get_feed through the keyword-search action. However, it does not explicitly name any sibling to differentiate itself.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no guidance on when to choose this tool over alternatives. It does not mention that get_post is for retrieving a single post or get_feed for browsing posts, nor does it state any exclusions. The AND semantics and category format are about how to use parameters, not about when to use the tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation4/5

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.

Naming Consistency4/5

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.

Tool Count4/5

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.

Completeness3/5

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.

Resources