Use applyapply from your agent

Give your own agent (Claude, ChatGPT, Cursor, or anything that speaks MCP or HTTP) an applyapply API key, and it can search current job listings, run sourcing, and write tailored application kits for you. It spends your credits the same way the website and extension do, and like them it never submits an application: you review and submit.

1. Create a key

Sign in, open Profile & settings, and create a key under Agent access. Keys start with aa_live_, are shown once, and can be revoked there at any time.

2. Connect over MCP

Claude Code:

claude mcp add --transport http applyapply https://applyapply.xyz/mcp --header "Authorization: Bearer aa_live_..."

Any client that takes an MCP config file:

{
  "mcpServers": {
    "applyapply": {
      "type": "http",
      "url": "https://applyapply.xyz/mcp",
      "headers": {
        "Authorization": "Bearer aa_live_..."
      }
    }
  }
}

Then ask it something like "find Head of Product roles posted today and write a kit for the best one".

Tools

Or call the HTTP API

Every tool is a plain HTTP route. Send the key as Authorization: Bearer aa_live_....

curl https://applyapply.xyz/auth/me -H "Authorization: Bearer $APPLYAPPLY_KEY"
curl -X POST https://applyapply.xyz/generate -H "Authorization: Bearer $APPLYAPPLY_KEY" \
  -H "Content-Type: application/json" -d '{"url":"https://jobs.ashbyhq.com/company/job-id"}'

Machine-readable

The same actions as OpenAPI: /openapi.json. Tool descriptions and this page are generated from the server, so they cannot drift from what it does.

Limits

60 requests a minute per account. Keys cannot create other keys, export the account, or delete it; those need a signed-in session.

applyapply.xyz · Privacy · Terms · FAQ · Make this better · Agents & API · Demo · Extension · Sign in · Support