Skip to content

Quick Start

Get up and running with Jobko MCP in 5 minutes.

1. Get an API Key

  1. Go to jobko.ai/dashboard#agent
  2. Click "Create API Key" or "Connect OpenClaw"
  3. Copy your key (starts with jk_)

Keep your API key secret

Never commit your API key to version control or share it publicly.

2. Choose Your Integration

If you use... Go to...
OpenClaw OpenClaw Integration
Claude Desktop Claude Desktop Integration
LangChain LangChain Integration
n8n n8n Integration
Any HTTP client REST API

3. Test Your Connection

mcporter call jobko.get_credits
curl https://jobko.ai/api/mcp/status \
  -H "Authorization: Bearer jk_YOUR_KEY"

You should see your credit balance:

{
  "credits": {
    "balance_dollars": "5.00",
    "balance_cents": 500
  }
}

4. Analyze Your First Job

mcporter call jobko.analyze_job --job_url "https://linkedin.com/jobs/view/123456"
curl -X POST https://jobko.ai/api/mcp/tools/call \
  -H "Authorization: Bearer jk_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "analyze_job", "arguments": {"job_url": "https://linkedin.com/jobs/view/123456"}}'

The response includes:

  • Match score (0-100%)
  • Matching skills from your profile
  • Missing skills you might need
  • Red flags to watch out for
  • Honest assessment of your fit

Next Steps