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