Connects Claude to Remotive's curated remote job listings via three focused tools: search jobs by keyword, category, or company; list all available categories with slugs; and pull full company profiles with active postings. Runs through Pipeworx's gateway infrastructure, which also offers an ask_pipeworx natural language interface if you'd rather skip direct tool calls. Useful when you're building job search workflows, need to filter remote positions programmatically, or want to track specific companies' hiring activity. The streamable HTTP transport means it works with any MCP client that supports remote servers. Part of a larger 673+ data source gateway, but available standalone if Remotive data is all you need.
Remotive MCP — curated remote-only job board
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
search | Search remote jobs by free-text + category + company. |
list_categories | All Remotive categories with slug and name. |
get_company | Company profile + active listings by company slug. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"remotive": {
"url": "https://gateway.pipeworx.io/remotive/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Remotive data" })
The gateway picks the right tool and fills the arguments automatically.
MIT