Skip to main content

Quickstart

Get started with DEB Cloud in three steps.

1. Get Your API Key

1

Create an account

Register at cloud.debytes.io. Your 14-day free trial starts immediately — no credit card required.
2

Generate an API key

Go to API Keys in your dashboard and click Generate New Key. Copy the key — it starts with deb_ and is shown only once.
Store your API key securely. It cannot be retrieved after creation — only regenerated.

2. Install the Plugin

The fastest way to use DEB Cloud is through the Claude Code plugin.
# Add the DeBytes marketplace
/plugin marketplace add debytesio/claude-plugins

# Install the Job Hunter plugin
/plugin install job-hunter@debytes
Set your API key as an environment variable:
export DEB_CLOUD_API_KEY=deb_your_api_key_here

3. Make Your First Tool Call

Using the Plugin

Once installed, use the /find-jobs command in Claude Code with your expectations file:
/find-jobs path/to/expectations.json

Using the API Directly

curl -X POST https://mcp.debytes.io/mcp \
  -H "Authorization: Bearer deb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "ping",
      "arguments": {}
    }
  }'
Response:
{
  "status": "OK",
  "message": "DEB Job Hunter MCP Server is running",
  "plan": "free_trial",
  "monthly_credits": 100,
  "cache_available": true,
  "platforms": ["indeed", "linkedin", "adzuna", "reed", "totaljobs", "cwjobs", "cvlibrary"]
}

What’s Next?