
HireBase MCP Server
Provides tools to interact with the HireBase Job API, enabling users to search for jobs using various criteria and retrieve detailed job information through natural language.
Tools
search_jobs
Search for jobs using the HireBase API Args: query: Full text search query and_keywords: Keywords that must all appear in results or_keywords: Keywords where at least one must appear not_keywords: Keywords that must not appear title: Job titles to search for category: Job categories to filter by country: Countries to filter by city: Cities to filter by location_type: Location types (Remote, In-Person, Hybrid) company: Companies to filter by salary_from: Minimum salary salary_to: Maximum salary salary_currency: Salary currency (e.g. USD) years_from: Minimum years of experience years_to: Maximum years of experience visa: Whether job offers visa sponsorship limit: Maximum number of results to return
get_job
Get detailed information about a specific job Args: job_id: The unique identifier of the job
README
HireBase MCP Server
A Model Context Protocol (MCP) server providing tools to interact with the HireBase Job API.
Available MCP Interactions
This server exposes the following MCP interactions:
Tools
search_jobs
: Search for jobs using the HireBase API based on various criteria (keywords, title, location, salary, etc.).- Parameters:
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
.
- Parameters:
get_job
: Retrieve detailed information about a specific job using its HireBase ID.- Parameters:
job_id
.
- Parameters:
Prompts
create_candidate_profile
: Generates a structured prompt based on candidate details (name, LinkedIn, website, resume text) to help guide job searching.- Parameters:
name
,linkedin_url
,personal_website
,resume_text
.
- Parameters:
Client Setup (Examples: Claude Desktop, Cursor)
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: Edit your
claude_desktop_config.json
:{ "mcpServers": { "hirebase": { "command": "uvx", "args": [ "hirebase-mcp" ], "env": { "HIREBASE_API_KEY": "" } } } }
- Cursor: Go to Settings > MCP > Add Server:
- Mac/Linux Command:
uvx hirebase-mcp
(Adjust package name if needed) - Windows Command:
cmd
- Windows Args:
/c
,uvx
,hirebase-mcp
(Adjust package name if needed) - Set the
HIREBASE_API_KEY
environment variable in the appropriate section.
- Mac/Linux Command:
- Claude Desktop: Edit your
-
Running from source via Python (Alternative):
- Clone the repo and note where you clone it to
- Claude Desktop: Edit your
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" ] } } }
-
Development
This project uses:
uv
for dependency management and virtual environmentsruff
for linting and formattinghatch
as the build backend
Common Tasks
# 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 .
Environment Variables
HIREBASE_API_KEY
(required): Your API key for accessing the HireBase API. The server needs this to make authenticated requests for job data.
Testing
This project uses pytest
for testing the core tool logic. Tests mock external API calls using unittest.mock
.
- Install test dependencies:
# Ensure you are in your activated virtual environment (.venv)
uv pip install -e '.[test]'
- Run tests:
# Example command
pytest
Contributing
Contributions are welcome.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.