- Explore MCP Servers
- hirebase-mcp
Hirebase Mcp
What is Hirebase Mcp
hirebase-mcp is a Python-based Model Context Protocol (MCP) server designed to facilitate interactions with the HireBase Job API, enabling users to search for jobs and create candidate profiles.
Use cases
Use cases for hirebase-mcp include job seekers searching for suitable positions, recruiters looking to find candidates, and developers building applications that integrate job search functionalities.
How to use
To use hirebase-mcp, install the required dependencies, obtain a HireBase API key (optional), and configure your MCP client (like Claude Desktop or Cursor) to run the server process with the appropriate settings.
Key features
Key features of hirebase-mcp include job searching capabilities with various filters (keywords, location, salary), retrieving detailed job information using job IDs, and generating structured candidate profiles based on user input.
Where to use
hirebase-mcp can be used in job search applications, recruitment platforms, and career development tools where interaction with job listing APIs is required.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Hirebase Mcp
hirebase-mcp is a Python-based Model Context Protocol (MCP) server designed to facilitate interactions with the HireBase Job API, enabling users to search for jobs and create candidate profiles.
Use cases
Use cases for hirebase-mcp include job seekers searching for suitable positions, recruiters looking to find candidates, and developers building applications that integrate job search functionalities.
How to use
To use hirebase-mcp, install the required dependencies, obtain a HireBase API key (optional), and configure your MCP client (like Claude Desktop or Cursor) to run the server process with the appropriate settings.
Key features
Key features of hirebase-mcp include job searching capabilities with various filters (keywords, location, salary), retrieving detailed job information using job IDs, and generating structured candidate profiles based on user input.
Where to use
hirebase-mcp can be used in job search applications, recruitment platforms, and career development tools where interaction with job listing APIs is required.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
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
uvis 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_KEYenvironment 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:
uvfor dependency management and virtual environmentsrufffor linting and formattinghatchas 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.
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










