by kld3v
A Model Context Protocol (MCP) server that integrates with the Reed Jobs API to search and retrieve job listings.
Reed Jobs MCP Server is a Model Context Protocol (MCP) server built with TypeScript that integrates with the Reed Jobs API. It allows users to search and retrieve job listings from Reed.co.uk, designed to work seamlessly with Cursor IDE.
To use Reed Jobs MCP Server, you need Node.js (v16 or higher), npm or yarn, and a Reed API key. You can install it via Smithery using npx -y @smithery/cli install @kld3v/reed_jobs_mcp --client claude
or manually by cloning the repository, installing dependencies, configuring your Reed API key in a .env
file, building the project, and starting the server. For Cursor IDE integration, you need to add specific configuration to your mcp.json
.
Q: What is an MCP server?
A: MCP stands for Model Context Protocol. It's a protocol that allows different applications and services to communicate and exchange information, often used in the context of AI and development environments like Cursor IDE.
Q: Do I need a Reed API key?
A: Yes, a Reed API key is required to access the Reed Jobs API and retrieve job listings. You can obtain one from the Reed Developer Portal.
Q: Can I filter jobs by both location and distance?
A: Yes, the search_jobs
tool allows you to specify both locationName
and distanceFromLocation
to refine your search results.
Q: How can I contribute to the project?
A: You can contribute by forking the repository, creating a feature branch, committing your changes, pushing to the branch, and opening a Pull Request.
A Model Context Protocol (MCP) server that integrates with the Reed Jobs API to search and retrieve job listings. Built with TypeScript and designed to work seamlessly with Cursor IDE.
To install Reed Jobs for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @kld3v/reed_jobs_mcp --client claude
git clone <your-repo-url>
cd reed-jobs-mcp
npm install
.env
file in the root directory:REED_API_KEY=your_reed_api_key_here
npm run build
npm start
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"
}
}
}
mcp_reed_jobs_search_jobs({
keywords: string,
locationName: string,
contract: boolean,
permanent: boolean,
fullTime: boolean,
partTime: boolean,
minimumSalary: number,
maximumSalary: number,
distanceFromLocation: number,
})
mcp_reed_jobs_get_job_details({
jobId: number,
})
REED_API_KEY
: Your Reed API keygit checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)This project is licensed under the MIT License - see below:
MIT License
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.
Built with ❤️ using TypeScript and MCP
Reviews feature coming soon
Stay tuned for community discussions and feedback