Skip to main content
Glama
echojobsio

JobDataLake MCP Server

by echojobsio

JobDataLake MCP Server

Search 1,000,000+ enriched job listings from 20,000+ companies directly from Claude, Cursor, Windsurf, or any MCP-compatible AI tool.

Free to use — no signup required. 500 calls/day included.

Quick Start

Add to your Claude Code or Claude Desktop MCP config:

{
  "mcpServers": {
    "jobdatalake": {
      "command": "npx",
      "args": ["-y", "@jobdatalake/mcp-server"]
    }
  }
}

That's it. No API key needed. Then ask:

"Find me remote senior React jobs paying over $150k"

"Entry level data science jobs posted this week"

"Jobs at Anthropic paying over $200k"

Want unlimited access?

Sign up at jobdatalake.com for your own API key, then add it:

{
  "mcpServers": {
    "jobdatalake": {
      "command": "npx",
      "args": ["-y", "@jobdatalake/mcp-server"],
      "env": {
        "JDL_API_KEY": "jdl_your_key_here"
      }
    }
  }
}

Related MCP server: trackly-cli

Tools

search_jobs

Search and filter jobs by keyword, skills, salary, remote type, seniority, location, date, and more.

Filters:

  • query — keyword search (title, company, skills)

  • skills — AND filter: Python,AWS,Kubernetes (all must match)

  • salary_min / salary_max — in USD (accepts full dollars, e.g. 150000)

  • remote_typefully_remote, hybrid, on_site

  • seniorityEntry, Mid Level, Senior, Staff, Principal, Manager, Director, C Level

  • location — city, country, or continent (Europe, Asia, Latin America, Scandinavia, etc.)

  • countries — ISO codes: US,GB,DE

  • job_functioneng, data, design, sales, marketing, product, etc.

  • employment_typefull_time, part_time, contract, internship

  • posted_within24h, 7d, 30d

  • sort_byposted_at:desc, salary_max_usd:desc, salary_min_usd:asc

  • company — filter by domain: stripe.com

get_job

Get full details for a specific job including description, requirements, salary, and apply link. Use the job_handle ID from search results.

get_company

Get company profile — industry, size, funding, career page. Accepts domain (stripe.com) or handle.

get_filter_options

Discover available filter values with job counts. Great for exploring what's in the dataset.

find_similar_jobs

Find jobs similar to a given listing using AI vector similarity. Available for remote + tech jobs.

Pricing

Free tier (no signup): 500 calls/day, resets daily.

With your own API key:

  • Free: 1,000 credits on signup

  • Starter: 1,000,000 credits — $200

  • Growth: 2,000,000 credits — $300

  • Business: 4,000,000 credits — $400

Credits never expire. Get your API key.

Data

  • 1M+ active job listings from 20,000+ companies

  • 40+ ATS platforms (Greenhouse, Lever, Workday, Ashby, etc.)

  • Updated hourly

  • AI-enriched: salary (USD), skills, seniority, remote policy, job function

  • Sub-100ms search responses

Example Queries

Query

What it does

"Remote Python jobs over $150k"

Skills + salary + remote filter

"Jobs at Stripe"

Company filter

"Entry level data science"

Seniority filter

"New remote jobs today"

Date + remote filter

"React AND TypeScript jobs in Europe"

Multi-skill AND + continent

"Highest paying remote jobs"

Salary sort

"What skills are most in demand?"

Filter options tool

License

MIT — see LICENSE.

Support

Available Tools

4 tools
find_similar_jobsA

Find jobs similar to a given job listing using AI vector similarity. Great for "more like this" discovery.

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYesJob handle or ID to find similar jobs for
per_pageNoNumber of results

TDQS

A3.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the method ('AI vector similarity') but lacks details on performance (e.g., speed, accuracy), limitations (e.g., data freshness, similarity thresholds), or output format (e.g., list structure, fields returned). For a tool with no annotation coverage, this leaves significant gaps in understanding how it behaves.

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 front-loaded with the core purpose in the first sentence and adds a brief use case note in the second. Both sentences earn their place by providing essential information without redundancy or fluff, making it highly efficient and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (AI-based similarity search) and lack of annotations and output schema, the description is incomplete. It explains the purpose and method but misses behavioral details (e.g., what 'similar' means, response format) and usage nuances. This is adequate as a minimum viable description but has clear gaps for effective agent use.

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 both parameters (job_id and per_page) adequately. The description does not add any additional meaning beyond what the schema provides, such as explaining how job_id is used in similarity calculations or constraints on per_page values. Baseline 3 is appropriate when the schema does the heavy lifting.

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 specific action ('Find jobs similar to a given job listing') and the method ('using AI vector similarity'), distinguishing it from sibling tools like get_job (retrieve single job) and search_jobs (general search). It explicitly mentions the use case ('more like this' discovery), making the purpose highly specific and differentiated.

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 context for when to use this tool ('Great for "more like this" discovery'), implying it's for similarity-based recommendations rather than direct retrieval or general search. However, it does not explicitly state when not to use it or name alternatives like search_jobs for different query types, which would be needed for a perfect score.

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

get_companyB

Get company profile including open job count, industry, size, and career page URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
companyYesCompany domain (e.g. "stripe.com") or handle

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It states this is a 'Get' operation which implies read-only behavior, but doesn't specify whether it requires authentication, has rate limits, returns partial vs complete data, or handles errors. For a tool with zero annotation coverage, this leaves significant behavioral gaps.

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, efficient sentence that front-loads the core purpose ('Get company profile') followed by specific data points included. Every word serves a purpose with no redundancy or unnecessary elaboration.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read operation with one parameter and no output schema, the description adequately covers what data is returned. However, without annotations or output schema, it doesn't specify the return format, error conditions, or data freshness. The description is minimally complete but leaves the agent to assume standard 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?

The input schema has 100% description coverage, with the single parameter 'company' documented as accepting domain or handle. The description doesn't add any parameter-specific information beyond what's in the schema, but doesn't need to since schema coverage is complete. This meets the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get' and the resource 'company profile', specifying what information is included (open job count, industry, size, career page URL). It distinguishes from sibling tools like 'get_job' by focusing on company-level data rather than job-specific information, though it doesn't explicitly contrast with all siblings.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like 'search_jobs' or 'find_similar_jobs'. It doesn't mention prerequisites, constraints, or typical use cases, leaving the agent to infer usage context from the tool name and description alone.

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

get_jobC

Get full details for a specific job listing including description, requirements, salary, and apply link.

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYesJob handle or ID

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves 'full details' but doesn't cover critical aspects like error handling (e.g., if the job ID is invalid), response format, authentication needs, rate limits, or whether it's a read-only operation. The description is minimal and leaves behavioral traits largely unspecified.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core action ('Get full details') and lists key data points. There's no wasted verbiage, and it's appropriately sized for a simple lookup tool. However, it could be slightly more structured by separating usage hints, but this is minor.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete for a tool that retrieves data. It mentions what details are included but doesn't explain the return structure, potential errors, or dependencies. For a read operation with no structured output, more context on the response is needed to be fully helpful to an agent.

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?

The input schema has 100% description coverage, with the single parameter 'job_id' documented as 'Job handle or ID.' The description adds no additional meaning beyond this, such as format examples or sourcing hints. With high schema coverage, the baseline is 3, as the description doesn't compensate but also doesn't detract from the schema's clarity.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Get') and resource ('job listing'), listing key data fields like description, requirements, salary, and apply link. It distinguishes from sibling tools like 'search_jobs' (which likely returns multiple results) and 'find_similar_jobs' (which suggests broader matching), but doesn't explicitly contrast them. The purpose is unambiguous but could be more precise about differentiation.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing a job ID), exclusions, or comparisons to siblings like 'search_jobs' (for broader queries) or 'find_similar_jobs' (for related listings). Usage is implied by the focus on 'specific job listing,' but explicit context is lacking.

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

search_jobsB

Search 1M+ job listings from 20K+ companies. Supports keyword search, AI semantic search, filters for location, salary, remote type, seniority, skills, and more.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryNoKeyword search (title, company, skills). Use * for all jobs.
semantic_queryNoNatural language search, e.g. "backend engineer at a climate tech startup"
locationNoLocation filter, e.g. "Remote", "San Francisco", "Germany"
remote_typeNoRemote work policy
countriesNoComma-separated ISO country codes, e.g. "US,GB,DE"
job_functionNo
seniorityNoComma-separated: junior, mid, senior, staff, principal
employment_typeNo
salary_minNoMinimum annual salary in USD
salary_maxNoMaximum annual salary in USD
skillsNoComma-separated required skills, e.g. "Python,AWS,Kubernetes"
companyNoCompany domain filter, e.g. "stripe.com"
pageNo
per_pageNoResults per page (max 100)

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It mentions the dataset scale (1M+ jobs, 20K+ companies) and search capabilities, but lacks critical behavioral details: whether this is a read-only operation (implied but not stated), pagination behavior beyond parameters, rate limits, authentication requirements, error handling, or response format. For a search tool with 14 parameters, this leaves significant gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is efficiently structured in two sentences: first establishes scope and scale, second enumerates capabilities. Every phrase adds value (scale numbers, search types, filter categories). Could be slightly more front-loaded by mentioning it's a search tool earlier, but overall well-sized without wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex search tool with 14 parameters, no annotations, and no output schema, the description is insufficient. It doesn't explain what results look like (structure, fields returned), pagination strategy beyond parameters, sorting options, performance characteristics, or error scenarios. The agent must rely heavily on the input schema alone, missing critical context for effective tool use.

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 79%, providing good baseline documentation. The description adds value by summarizing filter categories (location, salary, remote type, seniority, skills) and mentioning AI semantic search capability, which helps contextualize parameters like 'semantic_query'. However, it doesn't explain parameter interactions, default behaviors beyond schema defaults, or special syntax requirements beyond what's in schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool searches job listings with specific capabilities (keyword search, AI semantic search, filters). It distinguishes from siblings like 'find_similar_jobs' by emphasizing broad search across 1M+ listings rather than similarity matching, and from 'get_job' by focusing on search rather than retrieval of a specific job. However, it doesn't explicitly contrast with 'get_company', leaving some ambiguity.

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

Usage Guidelines3/5

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

The description implies usage for searching job listings with various filters, but doesn't explicitly state when to use this tool versus alternatives like 'find_similar_jobs' (which likely finds similar jobs to a given one) or 'get_job' (which retrieves a specific job by ID). No guidance on prerequisites, error conditions, or performance considerations is provided.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updatesv1.0.0
    • First observedfind_similar_jobs
    • First observedget_company
    • First observedget_job
    • First observedsearch_jobs

TDQS

A3.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: find_similar_jobs focuses on AI-based similarity matching for job discovery, get_company retrieves company profiles, get_job fetches specific job details, and search_jobs handles broad keyword/semantic search with filtering. There is no overlap in functionality, making tool selection unambiguous.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case (e.g., find_similar_jobs, get_company, get_job, search_jobs). The verbs (find, get, search) are appropriately descriptive and maintain a predictable naming convention throughout the set.

Tool Count4/5

With 4 tools, the server is well-scoped for job data exploration, covering key operations like searching, retrieving details, finding similar items, and company profiling. It feels slightly lean but reasonable, as core workflows are supported without unnecessary bloat.

Completeness4/5

The toolset provides comprehensive coverage for job data querying and discovery, including search, detailed retrieval, similarity matching, and company context. Minor gaps exist, such as no explicit update or delete operations, but these are likely unnecessary for a read-only data lake, and agents can work effectively with the available tools.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    Enables job search and scraping across multiple job boards (LinkedIn, Indeed, Glassdoor, etc.) with advanced filtering, directly from Claude Desktop or other MCP clients.
    5
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    MCP server for job search and application tracking, enabling AI agents to search jobs, get details, manage applications, and find contacts across 128K+ jobs and 1,900+ companies.
    566
    3
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to search LinkedIn jobs with built-in rate limiting to prevent IP bans. Supports job search, filtering, company profiles, and job categories through MCP tools.
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to pull live job listings from major ATS platforms (Greenhouse, Lever, Ashby, Workable), Hacker News hiring threads, and detect hiring signals on company career pages.
    -

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/echojobsio/jdl-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server