Skip to main content
Glama
rubatoyd

io.github.rubatoyd/kakao-book-mcp

by rubatoyd

kakao_book_search

Read-only

Find books by title, ISBN, publisher, or author through the Kakao Daum Book Search API, with sorting and pagination controls to locate and export detailed bibliographic and pricing metadata.

Instructions

[도서 검색] 카카오 Daum 책 검색 API로 도서를 검색합니다.

query: 검색을 원하는 질의어 (필수). target: 검색 필드 제한 (title: 제목, isbn: ISBN, publisher: 출판사, person: 인명/저자/역자). 기본값은 전체. sort: 정렬 방식 (accuracy: 정확도순, latest: 발간일순). 기본값: accuracy. page: 결과 페이지 번호 (1 ~ 50). size: 한 페이지에 보여질 문서 수 (1 ~ 50, 기본값 10).

⚠️ 카카오 API는 최대 50페이지 * 50건 = 2,500건까지만 페이징을 지원합니다. total_count가 2,500을 넘으면 cap_hit=true로 보고되며, 검색식을 세분화해야 합니다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
sizeNo
sortNoaccuracy
queryYes
targetNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already mark this as read-only/open-world. The description adds meaningful behavioral context beyond the annotations: the external Kakao API pagination cap of 2,500 records (50 pages × 50 items) and the cap_hit=true signal when total_count exceeds that. It does not cover auth, rate limits, or failure modes, but for a read-only search tool this is solid.

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 uses a clear, front-loaded summary followed by one line per parameter and a short warning block. Every sentence conveys necessary operational information, and there is no filler or repetition of the title/schema.

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 five parameters, no descriptions in the schema, and no output schema, the description covers all call parameters, defaults, ranges, and a notable API limitation (cap_hit). It stops short of describing the full return shape and does not discuss when to prefer sibling tools, but nothing blocks an agent from constructing a valid request.

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

Parameters5/5

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

Schema description coverage is 0%, so the description carries the full burden for parameters. It compensates well by explaining query, target (with allowed values and default all), sort (accuracy/latest with default), page range, size range/default, and the pagination cap. This adds meaning well beyond the bare schema types.

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 opens by identifying a concrete action and resource ('카카오 Daum 책 검색 API로 도서를 검색합니다'), and the tool name/siblings make it distinct from status, ISBN, and collect operations. The verb '검색' and the book domain leave no ambiguity about what this tool does.

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 makes it clear that this is the book-search operation and requires a query, but it never names sibling tools or states when to choose search over status/isbn/collect. Usage context is implied rather than explicitly routed, and there are no when-not-to-use conditions.

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