Skip to main content
Glama

search_jobs

Search job postings by keyword on supported sites (linkareer, jumpit) and return a list of titles, companies, and links. For blocked sites, use browser automation to collect listings.

Instructions

채용 사이트에서 키워드로 공고를 검색해 [제목, 회사, 링크] 목록을 반환합니다. Playwright로 직접 수집 가능한 사이트(현재 linkareer, jumpit)만 지원합니다 — 원티드/사람인처럼 자동화가 차단된 사이트는 대신 에이전트가 mcp__claude-in-chrome으로 직접 수집합니다 (docs/browser-collection.md 참고).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
siteYes검색할 채용 사이트
limitNo최대 결과 개수 (기본 20)
keywordYes검색 키워드 (예: "프론트엔드")

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses that the tool uses Playwright automation and only supports two sites, and it notes the alternative for other sites. However, it doesn't specify error behavior if an unsupported site is passed (e.g., returns empty, throws error), which is a minor gap.

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, zero waste. The first sentence states purpose and output; the second addresses limitations and alternatives. Front-loaded and efficient.

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?

No output schema exists, so the description must cover return values, which it does (list of title, company, link). It also covers the key limitation (supported sites) and the alternative path. It doesn't mention pagination or timeouts, but those are minor given the schema covers limit.

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%, so the schema already documents all parameters. The description adds no additional parameter-specific meaning beyond the schema, so the baseline of 3 applies.

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 (search), the resource (job postings on job sites), and the output format ([title, company, link]). It also differentiates from siblings like get_job_detail and register_posting by focusing on searching. The explicit list of supported sites adds specificity.

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

Usage Guidelines5/5

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

The description explicitly states when to use this tool (only for linkareer and jumpit) and when not to (for automated-blocked sites like Wanted/Saramin, use mcp__claude-in-chrome instead). It also references documentation, giving clear routing guidance.

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