by jobswithgpt
Enables AI models to perform job‑search queries through a lightweight MCP server that can be accessed by Claude Desktop or OpenAI tools.
Mcp provides a simple MCP server implementation that exposes job‑search functionality. The server can be called directly by AI models (e.g., Claude Desktop, OpenAI's GPT‑4.1‑mini) to retrieve relevant job listings based on natural‑language queries.
uv run mcp install server.py
jobswithgpt
) and URL (https://jobswithgpt.com/mcp/
) in the tool definition for Claude or OpenAI.find jobs for python devs in sf
through the AI model’s tool call. The model receives formatted job results.search_jobs
).Q: Which Python version is required? A: Python 3.12 or newer.
Q: Do I need an API key?
A: The public demo at jobswithgpt.com/mcp/
does not require one, but self‑hosted instances may.
Q: Can I add more job sources?
A: Yes, extend server.py
to query additional job boards and return results in the same format.
Q: Is there a Node.js installation method? A: The official guide uses UV for Python; a Node wrapper is not provided yet.
uv run mcp install server.py
mcp % uv run mcp install server.py
Using CPython 3.12.3
Creating virtual environment at: .venv
Installed 27 packages in 23ms
[06/02/25 11:25:38] INFO Added server 'jobswithgpt_search' to claude.py:143
Claude config
INFO Successfully installed cli.py:504
jobswithgpt_search in Claude app
mcp %
Example query: "Find ML jobs in SF"
OpenAI can directly use the server hosted MCP server (https://jobswithgpt.com/mcp/)
import openai
client = openai.OpenAI()
resp = client.responses.create(
model="gpt-4.1-mini",
tools=[
{
"type": "mcp",
"server_label": "jobswithgpt",
"server_url": "https://jobswithgpt.com/mcp/",
"require_approval": {
"never": {
"tool_names": ["search_jobs"]
}
}
},
],
input="find jobs for python devs in sf"
)
print(resp.output_text)
Here are some Python developer job opportunities in San Francisco:
1. Software Engineer - Backend, Product Engineering at Baton
[Apply here](https://job-boards.greenhouse.io/baton/jobs/4011483007)
2. Senior Backend Engineer at Stellic
[Apply here](https://job-boards.greenhouse.io/stellic/jobs/4705805007)
3. Software Engineer - Backend at Julius AI
[Apply here](https://jobs.ashbyhq.com/julius/75f8ef44-4fa4-46fa-b416-c7b697078eca)
etc
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by exa-labs
Provides real-time web search capabilities to AI assistants via a Model Context Protocol server, enabling safe and controlled access to the Exa AI Search API.
by elastic
Enables natural‑language interaction with Elasticsearch indices via the Model Context Protocol, exposing tools for listing indices, fetching mappings, performing searches, running ES|QL queries, and retrieving shard information.
by graphlit
Enables integration between MCP clients and the Graphlit platform, providing ingestion, extraction, retrieval, and RAG capabilities across a wide range of data sources and connectors.
by mamertofabian
Fast cross‑platform file searching leveraging the Everything SDK on Windows, Spotlight on macOS, and locate/plocate on Linux.
by cr7258
Provides Elasticsearch and OpenSearch interaction via Model Context Protocol, enabling document search, index management, cluster monitoring, and alias operations.
by liuyoshio
Provides natural‑language search and recommendation for Model Context Protocol servers, delivering rich metadata and real‑time updates.
by ihor-sokoliuk
Provides web search capabilities via the SearXNG API, exposing them through an MCP server for seamless integration with AI agents and tools.
by fatwang2
Provides web and news search, URL crawling, sitemap extraction, deep‑reasoning, and trending topic retrieval via Search1API, exposed as an MCP server for integration with AI clients.
by cnych
Provides SEO data retrieval via Ahrefs, exposing MCP tools for backlink analysis, keyword generation, traffic estimation, and keyword difficulty, with automated CAPTCHA solving and response caching.