Skip to content

Jobko MCP API

Integrate AI agents with Jobko's job matching and CV generation tools.

What is Jobko MCP?

Jobko MCP is an API that lets AI agents:

  • Analyze job postings against a user's profile
  • Generate tailored CVs for specific jobs
  • Access user preferences (skills, salary, location)
  • Check work authorization by country

Available Tools

Tool Cost Description
get_profile Free Get user skills, experience, preferences
get_credits Free Check credit balance
get_saved_jobs Free List analyzed/saved jobs
get_work_authorization Free Work permit status by country
analyze_job $0.02 Match job posting to user profile
generate_cv $0.20 Create tailored CV for a job

Quick Example

mcporter call jobko.analyze_job --job_url "https://example.com/job/123"
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://example.com/job/123"}}'
import requests

response = requests.post(
    "https://jobko.ai/api/mcp/tools/call",
    headers={"Authorization": "Bearer jk_YOUR_KEY"},
    json={"name": "analyze_job", "arguments": {"job_url": "https://example.com/job/123"}}
)
print(response.json())

Getting Help