Jobs API — REST + MCP Server

A high-performance API for job listings. Available via REST and the Model Context Protocol (MCP).

🔑 Get API Key

While the Model Context Protocol (MCP) server is public, accessing the raw OpenAPI REST endpoints requires an API Key for rate-limiting and access control.

To request an API key for your application, please reach out to us at hello@imabhishek.site.

Connect to AI Agents (MCP)

Web AI Assistants (ChatGPT, Gemini, Perplexity)

Most web-based AI chatbots don't support MCP natively yet. Instead, create a Custom GPT / Action by providing our OpenAPI specification URL:

https://jobs.imabhishek.site/swagger

Desktop AI Agents (Claude Desktop, Antigravity)

Provide tools to your AI assistant by adding this to your claude_desktop_config.json or agent config.

{
  "mcpServers": {
    "jobs-api": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://jobs.imabhishek.site/mcp"
      ]
    }
  }
}

Automation (n8n, Make)

For automation platforms that support MCP, use this base URL:

https://jobs.imabhishek.site/mcp

Code Editors (Cursor, Windsurf)

Add to your editor's MCP settings to fetch jobs directly inside your IDE.

Name: jobs-api
Type: command
Command: npx mcp-remote https://jobs.imabhishek.site/mcp
Available MCP Tools

list_jobs - Search and paginate list of jobs.
get_job - Retrieve full markdown details for a specific job.

REST API Documentation

We provide a fully documented REST API using OpenAPI (Swagger). The endpoints allow you to search, filter, and retrieve job postings directly via standard HTTP requests.

View Swagger UI →