Skip to main content
Glama

jobstack-mcp

Server Details

Unified jobs search over official feeds + ATS boards (USAJOBS, Adzuna, Muse, Greenhouse, Lever...)

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
IsaiahDupree/jobstack-mcp
GitHub Stars
0
Server Listing
jobstack-mcp

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.7/5 across 2 of 2 tools scored.

Server CoherenceA
Disambiguation5/5

The two tools have clearly distinct purposes: search_jobs queries across sources and returns a list, while get_job fetches a single job by its source and native ID. There is no overlap in functionality or confusion about when to use each.

Naming Consistency5/5

Both tool names follow the same verb_noun pattern: 'search_jobs' and 'get_job'. The verbs are descriptive and the naming convention is consistently lowercase with underscores, making the API predictable.

Tool Count3/5

With only two tools, the surface feels thin for a job search platform. While the pair covers search and retrieval, a typical server might include additional utilities like listing sources or fetching by internal ID. The count is borderline but not extreme.

Completeness4/5

The core workflow of searching for jobs and fetching details is fully covered. Minor gaps exist, such as no explicit endpoint to list available sources and the limitation that some upstream sources don't support single-job lookup, but these can be worked around or are inherent to external APIs.

Available Tools

2 tools
get_jobGet a single job by source + idA
Read-onlyIdempotent
Inspect

Fetch one job posting by its source engine and native id, returned as { meta, job } with the same flat Job shape search_jobs yields. The id is the native upstream id as returned by that source in search results (NOT prefixed with the source name). Exception: for source="ats" the id is a composite "board:company:nativeId" string (e.g. "greenhouse:airbnb:7995153") so the lookup can round-trip to the right ATS board. Not every source supports single-job lookup — a search-only source returns a not_supported / not_found error.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesNative upstream job id as returned by that source. For source="ats", the composite "board:company:nativeId" string.
sourceYesThe engine that produced the job (matches the Job.source field from search_jobs).
Behavior5/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false. The description goes well beyond by disclosing the exact return envelope ({ meta, job }), the flat Job shape matching search_jobs, the critical id-format caveat (NOT prefixed with source name), the composite ATS format with a concrete example, and the error behavior for unsupported sources. This is rich behavioral context that adds real value.

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, front-loaded with the core function, then progressively adds essential caveats. Every sentence contributes unique information (return shape, id rules, source limitations) with no filler or redundancy.

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 2-parameter, simple fetch tool with no output schema, the description covers everything an agent needs: the return shape, id semantics, ATS exception, and error behavior when a source doesn't support single-job lookup. The sibling search_jobs is referenced, and the safety profile is already in annotations. No significant gaps exist.

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 input schema already provides 100% coverage with descriptions for both parameters, so the baseline is 3. The description adds valuable semantics beyond the schema: it emphasizes that the id is the native upstream id as returned by search results, explicitly warns against prefixing with source name, and details the ATS composite format for round-tripping. This extra context justifies a 4.

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 verb+resource+scope: "Fetch one job posting by its source engine and native id, returned as { meta, job } with the same flat Job shape search_jobs yields." This clearly distinguishes it from the sibling search_jobs (single vs. list) and fully conveys the tool's purpose.

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 provides clear usage context: it specifies the input (source + native id), explains the id semantics, and notes when the tool cannot be used ("Not every source supports single-job lookup — a search-only source returns a not_supported / not_found error"). However, it does not explicitly say "use search_jobs instead when you need to list jobs," so the alternative guidance is implicit rather than explicit.

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

search_jobsSearch jobs (unified feed)A
Read-onlyIdempotent
Inspect

Search job postings across every configured source and merge the results into one flat Job shape. Fans out in parallel to USAJOBS, Adzuna, Jooble, The Muse, Reed, and the ats engine (Greenhouse/Lever/Ashby/Workable/SmartRecruiters), then merges + sorts by postedDate (newest first) and paginates the combined set. Each Job has id, source, title, company, location, remote, url, description, postedDate, salaryMin, salaryMax, salaryCurrency, department, and employmentType. The response envelope carries meta, the echoed query, sources_requested, an optional sources_errored map, total, count, limit, offset, and results. Use sources= to restrict to specific engines.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results in the merged page, clamped 1-100. Default 20.
offsetNoZero-based offset into the merged result set for pagination. Default 0.
remoteNoFilter to remote roles when true. Only sources that expose an explicit remote signal apply it; others ignore it.
sourcesNoComma-separated engine keys to restrict the fan-out to. Any of: usajobs, adzuna, jooble, themuse, reed, ats. Omit for all six.
keywordsNoFree-text search terms (job title, skill, company, etc.). Optional — omit to browse the latest postings.
locationNoFree-text location filter (e.g. "Washington, DC" or "London"). Applied upstream where the source supports it.
Behavior5/5

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

Beyond the readOnly/idempotent/destructive annotations, the description reveals significant behavior: parallel fan-out to six sources, merging/sorting by postedDate, pagination of the combined set, and an optional 'sources_errored' map for partial failures. This is valuable context that annotations alone do not provide.

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 one dense but well-organized paragraph. The first sentence states the core purpose, and each subsequent sentence earns its place by covering sources, merge/sort/pagination, the Job shape, the response envelope, and usage tip. No filler or redundancy.

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?

With no output schema, the description fully specifies the Job fields and the response envelope (meta, sources_errored, total, count, limit, offset, results), along with error behavior. This gives an agent everything needed to interpret the result. Combined with the strong annotations, this is complete for a complex search tool.

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 input schema already covers all parameters with detailed descriptions. The description adds meaning by explaining that limit/offset apply to the merged set after sorting by postedDate, and clarifies the 'sources' parameter's role in restricting fan-out. This context helps interpret pagination and filtering semantics beyond the schema.

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 verb+resource: 'Search job postings across every configured source and merge the results into one flat Job shape.' It clearly distinguishes from the sibling tool get_job, which presumably retrieves a single job, by emphasizing the unified multi-source feed.

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 states when to use the tool (search across all sources) and gives basic guidance ('Use sources= to restrict to specific engines'). However, it does not explicitly say when not to use it or direct users to get_job for single-job lookups, so it lacks an explicit alternative mention.

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

  • A
    license
    -
    quality
    C
    maintenance
    Searches LinkedIn, Indeed, USAJobs, and Google Jobs from the command line, deduplicates across sources, and optionally finds hiring manager emails; also runs as an MCP server for AI agents.
    Last updated
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Search and retrieve US federal job postings from USAJOBS.gov. Includes tools for finding announcements, agencies, pay grades, and occupational series.
    Last updated
    15
    MIT
  • F
    license
    -
    quality
    B
    maintenance
    Enables searching live, normalized job postings from 30+ ATS feeds and job boards, with tools for job search, source listing, pricing plans, and Upwork jobs.
    Last updated
  • A
    license
    A
    quality
    C
    maintenance
    Provides job search, local resume parsing, and resume-to-job matching via official APIs and local file processing.
    Last updated
    5
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.