remotive-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@remotive-mcp-serverFind remote Rails jobs and summarize the top 3."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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?"
Related MCP server: Remote Jobs MCP Server
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.txtRun standalone (stdio)
.venv/bin/python server.pyConnect 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.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceMCP server that exposes job search data from multiple boards, enabling clients to query and manage job listings via natural language.7MIT

Remote Jobs MCP Serverofficial
AlicenseAqualityBmaintenanceOfficial Model Context Protocol (MCP) server to search, filter, and retrieve live remote job listings from the Jobicy database in real-time. Works with Claude Code, Cursor, Cline, and custom AI agents.422MIT- Alicense-qualityDmaintenanceA remote MCP server for job scraping that enables searching LinkedIn and Indeed for job listings using Apify.MIT
- AlicenseAqualityCmaintenanceMCP server that scours job openings from public, ToS-clean sources (Greenhouse, Lever, Ashby, HN, RemoteOK, Adzuna, USAJobs) and provides tools for job search, company listings, and salary context.4MIT
Related MCP Connectors
Search remote and onsite jobs through the public Corvi Careers MCP server.
GetJobzi MCP server for job search, application tracking, and career forecasting.
RemoteOK MCP — remote-work job board (tech-heavy), keyless.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hyperplayer7/remotive-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server