工作搜索或Mcp服务器
概览
什么是 Job Searchoor?
Job Searchoor 是一个简单的 MCP(多渠道处理)服务器,旨在帮助用户找到符合其特定需求的工作机会。它从多个来源聚合职位列表,使求职者更容易发现相关职位,而无需在多个网站上搜索。
Job Searchoor 的特点
- 用户友好的界面:该平台提供直观的界面,使用户能够轻松浏览职位列表。
- 可定制的职位提醒:用户可以根据自己的技能、地点和期望的职位类型设置职位提醒,确保他们收到最相关机会的通知。
- 多源聚合:Job Searchoor 从多个渠道提取职位列表,提供市场上可用职位的全面视图。
- 开源:该项目在 GitHub 上公开可用,允许开发者根据需要进行贡献、修改和增强平台。
- MIT 许可证:Job Searchoor 在 MIT 许可证下发布,促进自由使用、修改和分发软件。
如何使用 Job Searchoor
- 访问平台:访问 Job Searchoor 的 GitHub 仓库,以获取源代码和文档。
- 克隆仓库:使用 Git 将仓库克隆到本地计算机,以进行定制或部署。
- 设置服务器:按照文档中提供的设置说明配置服务器,以满足您的需求。
- 自定义职位提醒:设置完成后,通过指定职位类型、地点和其他标准来定制您的职位提醒。
- 开始搜索:利用该平台搜索符合您标准的工作,并在有新职位发布时接收通知。
常见问题解答
Job Searchoor 使用了哪些技术?
Job Searchoor 使用现代网页技术构建,包括 HTML、CSS 和 JavaScript,以及促进职位数据聚合的服务器端编程语言。
Job Searchoor 是免费使用的吗?
是的,Job Searchoor 是开源的,并在 MIT 许可证下免费使用,允许用户根据需要访问和修改代码。
我可以为 Job Searchoor 贡献吗?
当然可以!欢迎贡献。您可以分叉仓库,进行更改,并在 GitHub 上提交拉取请求。
我该如何报告问题或错误?
如果您在使用 Job Searchoor 时遇到任何问题,可以在 GitHub 仓库的问题跟踪器上报告,开发团队会及时处理。
是否有 Job Searchoor 用户社区?
是的,用户可以通过 GitHub 讨论参与社区,在那里分享经验、提问并提供对平台的反馈。
详情
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配置
{
"mcpServers": {
"job-searchoor": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--0xdaef0f--job-searchoor--job-searchoor",
"bun run start"
],
"env": {}
}
}
}