Skip to main content
Glama

InfoSec Job Board

get_job

Get one job by id: role details, a short description excerpt, and the canonical job-page URL (which is also where to apply).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesJob id from search_jobs results

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description carries full burden. It mentions the tool returns specific data, but it does not disclose whether the operation is read-only, requires authentication, or has any side effects. This is adequate but minimal.

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 a single sentence that efficiently conveys the tool's purpose and output. No redundant information, and it is front-loaded with the key action.

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 simple get-by-id tool with one parameter and no output schema, the description adequately explains what the tool does and what it returns. It mentions three components of the response, which is sufficient for an agent to understand the basic behavior.

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 baseline is 3. The description does not add new parameter semantics beyond the schema's 'Job id from search_jobs results'. No additional details about format or constraints are provided.

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 action: 'Get one job by id' and specifies the returned data: role details, description excerpt, and apply URL. It distinguishes from sibling 'search_jobs' which lists multiple jobs, making the purpose unambiguous.

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 implies the id comes from 'search_jobs results' (via the parameter description), guiding the agent to use search_jobs first. However, it does not explicitly state when to use this tool over others or list any prerequisites beyond having the id.

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

A4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: get_job for a single job, market_stats for aggregate stats, salary_benchmark for salary data, search_jobs for searching, and top_employers for company rankings. No overlap.

Naming Consistency5/5

All tool names follow a consistent lowercase_with_underscores pattern (e.g., get_job, market_stats, salary_benchmark, search_jobs, top_employers). No mixing of conventions.

Tool Count5/5

5 tools is well-scoped for a job board server: covers retrieval, search, statistics, benchmarks, and employer rankings without unnecessary bloat.

Completeness4/5

The tool set covers core job board functionality (search, detail, stats, salary info, top employers). Minor gap: no explicit list_all tool, but search_jobs with broad criteria and a full-list URL effectively covers that.

Resources