remotive-mcp-server
MCP server that provides tools to search and retrieve remote jobs from Remotive's public job board, with no API key required.
README
remotive-mcp-server
An MCP server that gives Claude (or any MCP client) two tools for searching Remotive's public remote-job board: remotive_search_jobs and remotive_get_job. No API key or signup required — Remotive's job endpoint is free and public.
Built as a small, focused demo of MCP server design: real API integration, defensive handling of an upstream quirk, Pydantic-validated inputs, and a verifiable evaluation set.
What it does
remotive_search_jobs— search current Remotive listings by keyword and/or category, returns a compact markdown or JSON digest (title, company, category, tags, location, salary, post date, apply URL).remotive_get_job— given a job id from a search result, returns the full listing including the plain-text job description.
Example prompts once connected to Claude:
- "Find remote Rails jobs on Remotive and summarize the top 3."
- "Pull the full description for job 2069746."
- "What DevOps roles are open right now, and what do they pay?"
A real-world gotcha this server works around
Remotive's public /api/remote-jobs endpoint sits behind a Cloudflare cache that, in testing, keyed its cache only on the request path — not the query string. Every request, regardless of search, category, or limit params, returned an identical cached response (confirmed via the cf-cache-status: HIT response header and byte-identical results across differing params).
To make filtering actually work for callers, this server fetches the full current listing and applies search/category filtering client-side rather than trusting the upstream query params. See the comment at the top of server.py for details.
Setup
git clone <this-repo>
cd remotive-mcp-server
python3 -m venv .venv
.venv/bin/pip install -r requirements.txt
Run standalone (stdio)
.venv/bin/python server.py
Connect to Claude Desktop / Claude Code
Add to your MCP client config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"remotive": {
"command": "/absolute/path/to/remotive-mcp-server/.venv/bin/python",
"args": ["/absolute/path/to/remotive-mcp-server/server.py"]
}
}
}
Restart your client and the remotive_search_jobs / remotive_get_job tools will be available.
Evaluation
evaluation/evaluation.xml has 10 verifiable question/answer pairs exercising both tools (including ones that require calling remotive_search_jobs to find a job id, then remotive_get_job to read facts only present in the full description). Remotive's listing changes daily, so the pinned answers are a snapshot from 2026-08-10 — regenerate them against the live API before relying on this for regression testing.
Attribution & fair use
Per Remotive's API terms, every tool response includes a link back to the original Remotive job URL and credits Remotive as the source. This server does not cache or redistribute job data beyond a single request/response cycle, and calls the endpoint only on demand (Remotive asks for at most a few requests per day since data refreshes slowly).
Stack
Python 3.10+, MCP Python SDK, httpx, pydantic.
License
MIT — see LICENSE.
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.