Skip to main content
Glama

Curaiz Remote Jobs

Find Recent Relevant Jobs

find_recent_jobs
Read-onlyIdempotent

Find remote jobs ordered by semantic similarity to an ideal job description. Omit since to search the full available corpus; for an incremental search, pass searched_until from the previous successful response as since. Results are compact and never include full job descriptions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum results to return, from 1 to 25
sinceNoOptional inclusive discovery-time lower bound as an ISO 8601 timestamp with a timezone, at most 31 days old. Omit it to search the full available corpus. For an incremental search, pass searched_until from the previous successful response.
locationsYesOne to five exact supported applicant-location names or slugs
descriptionYesAn ideal or example job description, including desired responsibilities, skills, and seniority

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
jobsYes
truncatedYes
result_countYes
searched_sinceYesInclusive discovery-time lower bound used for this search
searched_untilYesExclusive discovery-time upper bound captured for this search. Pass this value as since to continue with an incremental search.

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already establish read-only, idempotent, and non-destructive behavior. The description adds meaningful behavioral context: results are ordered by semantic similarity, are compact, and never include full job descriptions. This helps set expectations about output shape beyond what annotations cover.

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 three sentences with no filler. It front-loads the primary purpose, then gives the most important usage nuance, and ends with a concise behavioral caveat. Every sentence contributes useful information.

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?

Given the rich input schema, annotations, and an output schema, the description covers the core behavioral contract: what is searched, how incremental search works, and what results will look like. Nothing essential for invoking the tool correctly is missing.

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?

The schema already documents all parameters with 100% coverage, so this is near a baseline of 3. The description adds extra value by explaining the incremental-search contract around `since` and `searched_until`, which is not fully derivable from the schema alone.

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 with a specific action and resource: 'Find remote jobs ordered by semantic similarity to an ideal job description.' This clearly conveys what the tool does and its core behavior. It is distinguishable from the sibling tools like get_job_details, since the scope is job search rather than detail retrieval.

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 gives explicit usage guidance for the `since` parameter: omit it for the full corpus and pass `searched_until` for incremental searches. It stops short of explicitly naming sibling alternatives and the conditions for choosing them, though the note that results never include full job descriptions implies when get_job_details would be relevant.

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.4/5.0
Disambiguation5/5

Each tool serves a distinct purpose: finding jobs, retrieving job details, and getting location taxonomy. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: find_recent_jobs, get_job_details, get_locations. This is predictable and clear.

Tool Count5/5

With 3 tools, the server is lean but each tool is essential to the core workflow (search, detail retrieval, location support). This falls within the well-scoped range.

Completeness3/5

The server covers search, details, and locations, but lacks a direct way to filter jobs by location or other criteria from the search tool. Agents must manually correlate location slugs with job results, which is a significant limitation for location-specific queries.

Resources