logo

A MCP Server for the latest job postings.

Meet WorkDrop, the AI-powered MCP Server that serves the job postings (typically within the hour) from the top companies. Copy the configuration below to use WorkDrop with your preferred LLM platform.

Claude Desktop Configuration

Add this to your claude_desktop_config.json file:

{
  "mcpServers": {
    "workdrop": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://api.workdrop.ai/v1/mcp"]
    }
  }
}

Claude Code Configuration

Set up WorkDrop in Claude Code with this command:

claude mcp add-json "workdrop" '{
  "command": "npx",
  "args": ["-y", "mcp-remote", "https://api.workdrop.ai/v1/mcp"]
}'

Cursor IDE Configuration

For global access across all projects, add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "workdrop": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://api.workdrop.ai/v1/mcp"]
    }
  }
}

Cursor IDE Project Configuration

For project-specific access, create .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "workdrop": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://api.workdrop.ai/v1/mcp"]
    }
  }
}

Gemini Configuration

For Gemini integration, use the following configuration:

{
  "mcpServers": {
    "workdrop": {
      "command": "npx",
      "args": ["-y","mcp-remote","https://api.workdrop.ai/v1/mcp"]
    }
  }
}