RJ

Reed Jobs

Created 5 months ago

A Model Context Protocol (MCP) server that integrates with the Reed Jobs API to search and retrieve job listings.

development location documentation public

What is Reed Jobs?

Search and retrieve job listings from Reed.co.uk.

Documentation

Features

  • 🔍 Search jobs with multiple filters (keywords, location, salary, contract type)
  • 📋 Get detailed job information
  • 🌍 Remote work filter support
  • 💰 Salary range filtering
  • 📍 Location-based search with distance parameters

Getting Started# Prerequisites

Installation## Installing via Smithery

To install Reed Jobs for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @kld3v/reed_jobs_mcp --client claude
```\n\n#### Manual Installation
1. Clone the repository:
```bash
git clone
cd reed-jobs-mcp
  1. Install dependencies:
npm install
  1. Create a .env file in the root directory:
REED_API_KEY=your_reed_api_key_here
  1. Build the project:
npm run build
  1. Start the server:
npm start

Cursor IDE Configuration

Add this to your mcp.json in Cursor:

{
  "mcpServers": {
    "reed-jobs-mcp": {
      "command": "node",
      "args": ["path/to/your/dist/index.js"],
      "cwd": "path/to/your/project"
    }
  }
}

Available Tools# Search Jobs

mcp_reed_jobs_search_jobs({ keywords: string, locationName: string, contract: boolean, permanent: boolean, fullTime: boolean, partTime: boolean, minimumSalary: number, maximumSalary: number, distanceFromLocation: number, })
```\n\n### Get Job Details
```typescript
mcp_reed_jobs_get_job_details({ jobId: number, })

Environment Variables

  • REED_API_KEY: Your Reed API key

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see below:

Copyright (c) 2024
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Server Config

{
  "mcpServers": {
    "reed-jobs-server": {
      "command": "npx",
      "args": [
        "reed-jobs"
      ]
    }
  }
}

Links & Status

Repository: github.com
Hosted: No
Global: No
Official: No

Project Info

Hosted Featured
Created At: Jul 02, 2025
Updated At: Aug 07, 2025
Author: kld3v
Category: community
License: MIT License
Tags:
development location documentation