Job Search for MCP Server
A simple MCP server that provides you with jobs according to your needs.
Overview
What is Job Searchoor?
Job Searchoor is a simple MCP (Multi-Channel Processing) server designed to help users find job opportunities tailored to their specific needs. It aggregates job listings from various sources, making it easier for job seekers to discover relevant positions without having to search multiple websites.
Features of Job Searchoor
- User-Friendly Interface: The platform offers an intuitive interface that allows users to navigate through job listings effortlessly.
- Customizable Job Alerts: Users can set preferences for job alerts based on their skills, location, and desired job type, ensuring they receive notifications for the most relevant opportunities.
- Multi-Source Aggregation: Job Searchoor pulls job listings from various channels, providing a comprehensive view of available positions in the market.
- Open Source: The project is publicly available on GitHub, allowing developers to contribute, modify, and enhance the platform as needed.
- MIT License: Job Searchoor is released under the MIT license, promoting freedom to use, modify, and distribute the software.
How to Use Job Searchoor
- Access the Platform: Visit the Job Searchoor repository on GitHub to access the source code and documentation.
- Clone the Repository: Use Git to clone the repository to your local machine for customization or deployment.
- Set Up the Server: Follow the setup instructions provided in the documentation to configure the server according to your needs.
- Customize Job Alerts: After setting up, customize your job alerts by specifying your preferences for job types, locations, and other criteria.
- Start Searching: Utilize the platform to search for jobs that match your criteria and receive notifications when new listings are available.
Frequently Asked Questions
What technologies does Job Searchoor use?
Job Searchoor is built using modern web technologies, including HTML, CSS, and JavaScript, along with server-side programming languages that facilitate job data aggregation.
Is Job Searchoor free to use?
Yes, Job Searchoor is open-source and free to use under the MIT license, allowing users to access and modify the code as needed.
Can I contribute to Job Searchoor?
Absolutely! Contributions are welcome. You can fork the repository, make changes, and submit a pull request on GitHub.
How do I report issues or bugs?
If you encounter any issues while using Job Searchoor, you can report them on the GitHub repository's issue tracker, where the development team will address them promptly.
Is there a community for Job Searchoor users?
Yes, users can engage with the community through GitHub discussions, where they can share experiences, ask questions, and provide feedback on the platform.
Details
Job Searchoor MCP Server
An MCP server implementation that provides job search functionality.
Tools
get_jobs
Get available jobs with filtering options Inputs:
sinceWhen (string): Since when to get available jobs. e.g., '1d' or '1w' (only days and weeks are supported) keywords (string[], optional): Keywords to filter jobs by excludeKeywords (string[], optional): Keywords to exclude from the jobs isRemote (boolean, optional): Whether to filter jobs by remote work
Usage with Claude Desktop
Add this to your claude_desktop_config.json:
"mcpServers": {
"job-search": {
"command": "npx",
"args": ["-y", "job-searchoor"]
}
}
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Server Config
{
"mcpServers": {
"job-searchoor": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--0xdaef0f--job-searchoor--job-searchoor",
"bun run start"
],
"env": {}
}
}
}