by jhgaylor
Discover jobs near me with HireBase Job Search. Explore job listings and postings near you using advanced filters for yo
Searches for jobs through the HireBase API with detailed filtering options and retrieves comprehensive job information.
HireBase Job Search is a community-built MCP server published by jhgaylor that provides AI assistants with tools and capabilities via the Model Context Protocol. Discover jobs near me with HireBase Job Search. Explore job listings and postings near you using advanced filters for yo It is categorized under search web.
You can install HireBase Job Search in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
HireBase Job Search is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Fetch and extract information from websites automatically
Example
Research competitor pricing, scrape product reviews, monitor news mentions
Automate 5-10 hours/week of manual web research
Track website changes, new content, price updates
Example
Monitor competitor blog for new posts, track stock availability, watch for pricing changes
Stay informed without manual checking, never miss important updates
Extract structured data from multiple websites
Example
Compile product listings from 10 e-commerce sites, aggregate job postings, collect real estate data
Build datasets 100x faster than manual copying
Share your MCP server with the developer community
HireBase Job Search reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
HireBase Job Search has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
HireBase Job Search is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Useful MCP listing: HireBase Job Search is the kind of server we cite when onboarding engineers to host + tool permissions.
HireBase Job Search reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
HireBase Job Search is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
HireBase Job Search has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
HireBase Job Search reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
We wired HireBase Job Search into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
According to our notes, HireBase Job Search benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
showing 1-10 of 49
A Model Context Protocol (MCP) server providing tools to interact with the HireBase Job API.
This server exposes the following MCP interactions:
search_jobs: Search for jobs using the HireBase API based on various criteria (keywords, title, location, salary, etc.).
query, and_keywords, or_keywords, not_keywords, title, category, country, city, location_type, company, salary_from, salary_to, salary_currency, years_from, years_to, visa, limit.get_job: Retrieve detailed information about a specific job using its HireBase ID.
job_id.create_candidate_profile: Generates a structured prompt based on candidate details (name, LinkedIn, website, resume text) to help guide job searching.
name, linkedin_url, personal_website, resume_text.To use this server with an MCP client like Claude Desktop or Cursor, you need to configure the client to run the server process and optionally provide the HireBase API key.
Ensure uv is installed: curl -LsSf https://astral.sh/uv/install.sh | sh
Obtain a HireBase API Key (optional): Request a key from HireBase You can set this as an environment variable (HIREBASE_API_KEY) or just leave it empty.
Configure your client:
Using uvx:
claude_desktop_config.json:
{
"mcpServers": {
"hirebase": {
"command": "uvx",
"args": [
"hirebase-mcp"
],
"env": {
"HIREBASE_API_KEY": ""
}
}
}
}
uvx hirebase-mcp (Adjust package name if needed)cmd/c, uvx, hirebase-mcp (Adjust package name if needed)HIREBASE_API_KEY environment variable in the appropriate section.Running from source via Python (Alternative):
claude_desktop_config.json:{
"mcpServers": {
"hirebase": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"--with",
"requests",
"mcp",
"run",
"PATH_TO_REPO/src/hirebase_mcp/server.py"
]
}
}
}
This project uses:
uv for dependency management and virtual environmentsruff for linting and formattinghatch as the build backend# Setup virtual env
uv venv
# Install dependencies
uv pip install -e .
# install cli tools
uv tool install ruff
# Run linting
ruff check .
# Format code
ruff format .
HIREBASE_API_KEY (required): Your API key for accessing the HireBase API. The server needs this to make authenticated requests for job data.This project uses pytest for testing the core tool logic. Tests mock external API calls using unittest.mock.
# Ensure you are in your activated virtual environment (.venv)
uv pip install -e '.[test]'
# Example command
pytest
Contributions are welcome.
This project is licensed under the MIT License - see the LICENSE file for details.
Interact with services that don't offer APIs
Example
Check form submissions, validate website functionality, test user flows
Automate interactions with any website, even without API
Prerequisites
Time Estimate
20-40 minutes including configuration and testing
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
MCP server handles HTTP requests, HTML parsing, JavaScript rendering (if headless browser), and returns structured data to Claude.
Protocols
Compatibility
✓ Use when
Use for research automation, content monitoring, data aggregation from multiple sources, and when official APIs don't exist. Best for read-only information gathering.
✗ Avoid when
Avoid for sites with APIs (use API instead), sites that explicitly forbid scraping, when data is copyrighted, or for login-required content without proper authorization.