Skip to main content
Glama

不動産競売 構造化データハブ — Japan real-estate auctions

Server Details

Japanese court-run real-estate auctions (BIT). 5 tools, ~1,480 active listings. CC BY 4.0.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
keibai-hub/keibai-hub-mcp
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool covers a distinct aspect: searching auctions, listing upcoming sales, fetching a single auction's details, looking up court info, and finding practitioners. No two tools overlap in purpose, making selection unambiguous.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case (e.g., search_auctions, get_auction_detail). The verbs (find, get, list, search) clearly indicate the action, and the nouns are specific to the domain.

Tool Count5/5

Five tools is well-scoped for a read-only data hub covering Japan real-estate auctions. Each tool serves a necessary function without redundancy, and the count is neither too sparse nor overwhelming.

Completeness4/5

The tool surface covers core operations: search, list, detail, court directory, and practitioner lookup. Minor gaps exist (e.g., no historical auction data or bid results), but the set provides a solid foundation for common investment and legal workflows.

Available Tools

5 tools
find_practitioner_for_auctionA
Read-onlyIdempotent
Inspect

落札・入札関連の士業 (司法書士・弁護士・不動産鑑定士・土地家屋調査士) を返す. Stages: post_acquisition (default — 落札後の所有権移転登記; 司法書士が法律上ほぼ必須), pre_bid (入札前の独立評価・権利確認), eviction (明渡し・強制執行), boundary_dispute (境界確定・分筆). Information-only — not a paid intermediary. Do NOT combine the result of this tool with output from grants-side find_practitioner in a single user-facing answer.

ParametersJSON Schema
NameRequiredDescriptionDefault
stageNoDefault = post_acquisition
case_idYesAuction case_id, e.g. "bit_00000078922"
prefectureNoOptional — prefecture for prefecture-chapter referral
Behavior4/5

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

Annotations already indicate readOnlyHint=true and destructiveHint=false. The description adds that it is 'information-only' and 'not a paid intermediary,' providing context about the tool's nature and constraints, thus going beyond the annotations.

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?

The description is very concise: it starts with the core purpose, then lists stages and constraints in a structured way. Every sentence adds value, and there is no redundancy or fluff.

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

Completeness5/5

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

Despite lacking an output schema, the description covers all necessary aspects: purpose, stages, default behavior, and a critical caveat (not combining with another tool). Given the tool's complexity (3 parameters, single enum), it provides complete guidance for an agent to use it correctly.

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 100%, so baseline is 3. The description adds significant meaning by explaining each stage (e.g., 'post_acquisition (default — 落札後の所有権移転登記; 司法書士が法律上ほぼ必須)'), which goes beyond the schema's enum labels.

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?

The description clearly states the tool returns practitioners for auction-related stages, with specific resource ('士業') and verb ('返す'). It distinguishes from siblings by focusing on practitioner lookup, whereas siblings handle auction details, court directory, sales listings, and auction searches.

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?

The description lists four specific stages with defaults, providing clear when-to-use context. It also explicitly warns against combining results with a grants-side tool, offering an important exclusion. However, it does not explicitly state when to prefer alternative tools (e.g., get_court_directory).

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

get_auction_detailA
Read-onlyIdempotent
Inspect

一件の競売物件の構造化データを取得. Fetch one auction by case_id (e.g. "bit_00000078922"). Returns case_number, court_code, property_type, sale_base_price_jpy, bid_floor_jpy (= base × 80%), deposit_jpy, bid_period, opening_date, address, photos, and _canonical (cite this).

ParametersJSON Schema
NameRequiredDescriptionDefault
case_idYesAuction case id, e.g. "bit_00000078922"
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true. Description adds behavioral details like derived fields (bid_floor_jpy = base × 80%) and mentions _canonical for citation, providing value beyond annotations.

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?

Description is concise: one sentence in Japanese and English, followed by a structured list of returned fields. No unnecessary words.

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?

Without an output schema, the description lists key return fields, providing sufficient context for an agent to understand what the tool returns. Coverage is adequate for the tool's simplicity.

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 100% for the single parameter case_id. Description enhances it with a concrete example and minimal length constraint, clarifying expected format.

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?

Description explicitly states 'Fetch one auction by case_id' and lists specific return fields, clearly distinguishing from sibling tools (search, list, find).

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?

Description provides usage context by naming the required parameter and giving an example. While it doesn't explicitly state when not to use, the focus on single-case retrieval and the sibling names imply appropriate usage.

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

get_court_directoryA
Read-onlyIdempotent
Inspect

裁判所の管轄・連絡先情報を取得. Look up a Japanese district court (本庁 or 支部) by code.

ParametersJSON Schema
NameRequiredDescriptionDefault
court_codeYesCourt slug (e.g. "tokyo_main") OR BIT 5-digit ID (e.g. "31111")
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, establishing the safety profile. The description adds context (Japanese district court, lookup by code) but does not disclose additional behaviors such as rate limits or authentication requirements. With annotations present, this is adequate.

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

Conciseness4/5

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

The description is very short (two sentences, bilingual) and front-loaded. It conveys the essential information efficiently, though the Japanese and English versions are somewhat redundant.

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

Completeness5/5

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

For a simple tool with one parameter, full schema coverage, and informative annotations, the description fully covers what is needed. It tells the agent what the tool does and how to use the parameter, leaving no gaps.

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

Parameters3/5

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

Schema description coverage is 100%: the parameter 'court_code' is documented with examples. The description only restates 'by code' without adding new meaning. Baseline 3 is appropriate since the schema already does the heavy lifting.

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?

The description clearly states the tool's purpose: to retrieve Japanese district court directory info (contact/jurisdiction) by code. It uses specific verbs (look up, 取得) and distinguishes itself from sibling tools that focus on auctions.

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

Usage Guidelines3/5

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

The description implies usage when a court code is available and directory info is needed, but it does not provide explicit when-not-to-use guidance or alternatives. Since siblings are all unrelated (auctions), the lack of exclusions is acceptable but not ideal.

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

list_upcoming_salesA
Read-onlyIdempotent
Inspect

近日開札予定の競売物件を一覧取得. List auctions whose opening_date falls within the next N days (default 14, max 90). Sorted ascending. Useful for investment screening / calendar exports.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoDefault 50
days_aheadNoLookahead window, default 14
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, destructiveHint, so the safety profile is clear. The description adds the sorting behavior (ascending) and default/max values, which is minor beyond annotations.

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

Conciseness4/5

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

The description is concise (two English sentences plus a Japanese phrase). It front-loads the purpose and includes parameters and use case. The Japanese phrase may be redundant for English contexts but does not harm conciseness.

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?

With no output schema, the description should hint at return structure. It says 'list auctions' but does not specify fields. It covers the input and purpose adequately but lacks details on what is returned.

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

Parameters3/5

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

Schema coverage is 100% with descriptions for both parameters (limit, days_ahead) including defaults and bounds. The description only echoes the days_ahead default and max, adding no new parameter meaning. Baseline 3.

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?

The description clearly states the verb 'list' and the resource 'auctions', and specifies the time window (next N days, default 14, max 90) and sorting. This distinguishes it from siblings like search_auctions (likely more filtering) and get_auction_detail (single item).

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?

The description mentions 'Useful for investment screening / calendar exports', providing context for when to use. It does not explicitly state when not to use, but the sibling tools imply alternatives. Clear context but lacks exclusions.

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

search_auctionsA
Read-onlyIdempotent
Inspect

日本の不動産競売物件を検索 (BIT, bit.courts.go.jp 由来の構造化データ). Filters: keyword (Japanese FTS over title/address), prefecture, court_code, property_type (land/detached_house/apartment/other), price range, bid_period_only. Returns case_id, court, address, sale_base_price_jpy, bid_period, opening_date, photos.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNo
limitNo
offsetNo
statusNoDefault = active
keywordNoJapanese keyword over title/address/structure
court_codeNo5-digit BIT court id (本庁=11, 支部=21,31,...) OR slug like "tokyo_main"
prefectureNoPrefecture in kanji, e.g. "東京都"
max_price_jpyNo
min_price_jpyNo
property_typeNo
bid_period_onlyNoOnly listings whose bid period intersects today
Behavior3/5

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

Annotations already indicate readOnlyHint, idempotentHint, and destructiveHint. The description adds that data comes from BIT (bit.courts.go.jp) but does not disclose additional behaviors like pagination, rate limits, or default sorting beyond what is in the schema.

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

Conciseness4/5

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

The description is a single sentence front-loaded with the main purpose and lists filters and return fields efficiently. However, the mix of Japanese and English and the comma-separated style could be clearer.

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?

Given no output schema, the description explains return fields (case_id, court, address, etc.) and mentions data source. It lacks guidance on pagination and sorting default, but overall is sufficient for a search tool with good annotations.

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

Parameters3/5

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

Schema description coverage is 45%, and the description lists most filter categories (keyword, prefecture, court_code, property_type, price range, bid_period_only) but omits sort, limit, offset, and status. It adds context by grouping filters but does not fully compensate for the coverage gap.

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?

The description clearly states the tool searches Japanese real estate auction properties (競売物件検索) with specific filters and return fields, distinguishing it from sibling tools that focus on details or directories.

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

Usage Guidelines3/5

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

While the description lists filters and return fields, it does not explicitly guide when to use this tool versus siblings (e.g., get_auction_detail for single auction details). The usage context is implied but not explicitly stated.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.