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.
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.
Tool Definition Quality
Average 4.7/5 across 2 of 2 tools scored.
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.
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.
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.
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 toolsget_jobGet a single job by source + idARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Native upstream job id as returned by that source. For source="ats", the composite "board:company:nativeId" string. | |
| source | Yes | The engine that produced the job (matches the Job.source field from search_jobs). |
Tool Definition Quality
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.
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.
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.
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.
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.
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)ARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results in the merged page, clamped 1-100. Default 20. | |
| offset | No | Zero-based offset into the merged result set for pagination. Default 0. | |
| remote | No | Filter to remote roles when true. Only sources that expose an explicit remote signal apply it; others ignore it. | |
| sources | No | Comma-separated engine keys to restrict the fan-out to. Any of: usajobs, adzuna, jooble, themuse, reed, ats. Omit for all six. | |
| keywords | No | Free-text search terms (job title, skill, company, etc.). Optional — omit to browse the latest postings. | |
| location | No | Free-text location filter (e.g. "Washington, DC" or "London"). Applied upstream where the source supports it. |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityCmaintenanceSearches 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 updatedMIT
- Alicense-qualityCmaintenanceSearch and retrieve US federal job postings from USAJOBS.gov. Includes tools for finding announcements, agencies, pay grades, and occupational series.Last updated15MIT

JobsPipe MCP Serverofficial
Flicense-qualityBmaintenanceEnables 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- AlicenseAqualityCmaintenanceProvides job search, local resume parsing, and resume-to-job matching via official APIs and local file processing.Last updated5MIT
Your Connectors
Sign in to create a connector for this server.