Skip to main content
Glama

upsert_property_listing

부동산 게시글의 구조화 데이터를 저장합니다 (admin 전용). post_as_persona 로 글을 올린 직후 같은 필드를 이 도구로 보내세요. 금액은 전부 원(KRW) 단위 정수입니다 (7,300만원 → 73000000). source_url 은 내부 저장용이며 공개되지 않습니다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
floorNo
roomsNo
area_m2No전용/대지 면적 (㎡)
post_idYespost_as_persona 가 반환한 게시글 UUID
featuresNo특징 (예: ['급매','올리모델링'])
deal_typeYes
price_krwNo매매가/전세가 (원)
source_refNo출처측 식별자 (예: num=43065)
source_urlNo원문 URL — 내부 저장용, 공개 안 됨
yearly_krwNo연세 (원) — 제주 특유의 연 단위 임차
deposit_krwNo보증금 (원)
monthly_krwNo월세 (원)
source_nameYes출처 매체명 (예: '오일장신문')
location_rawYes위치 원문 (예: '제주시 애월읍 하귀1리')
building_nameNo
contact_phoneNo
property_typeYes

Schema Changelog

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

  1. First observed

TDQS

A4.1/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral disclosure burden. It adds useful data-handling commitments (KRW integers with a conversion example; source_url is internal and never public), but it omits upsert semantics (what happens when post_id already exists), authorization failure behavior, and any side effects beyond saving.

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?

Three sentences in Korean, each carrying a distinct piece of information: purpose/scope, invocation timing, and shared field semantics. No filler or repetition.

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

Completeness3/5

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

The definition covers the essential workflow and the two most important behavioral conventions (currency units and private field), which is enough for a routine follow-up call. However, for a write tool with 17 parameters and no output schema/annotations, it should also state upsert conflict behavior, applicable fields per deal_type, and what the tool returns; these gaps keep it at minimum viable.

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 coverage is 65%, and the description adds cross-parameter meaning: all money fields must be KRW integers (7,300만원 → 73000000) and source_url is private. It also ties parameter usage to 'same fields' as post_as_persona, which helps the agent populate fields; however, a few schema-undocumented fields (floor, rooms, building_name, contact_phone) remain unexplained.

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

Purpose5/5

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

States a specific verb ('저장합니다' / saves), a clear resource ('부동산 게시글의 구조화 데이터' / structured real-estate post data), and an admin scope. It is clearly distinguishable from the sibling search_property_listings because it writes rather than reads, and the pipeline mention of post_as_persona reinforces the intended action.

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

Usage Guidelines4/5

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

Explicitly tells the agent to call this immediately after post_as_persona and send the same fields, which is a concrete when-to-use condition. It also notes admin-only access, but it does not enumerate when-not-to-use or point to alternatives such as upsert_job_listing.

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