OpenClaw Integration¶
Connect Jobko to OpenClaw for native MCP support.
Prerequisites¶
- OpenClaw installed
- mcporter CLI tool
- A Jobko API key (get one here)
Setup¶
1. Add Jobko to mcporter¶
mcporter config add jobko \
--url "https://jobko.ai/api/mcp" \
--transport sse \
--header "Authorization=Bearer jk_YOUR_KEY" \
--scope home
2. Verify the Connection¶
You should see:
jobko.get_profile - Get user profile
jobko.get_credits - Check credit balance
jobko.analyze_job - Analyze a job posting
jobko.generate_cv - Generate tailored CV
3. Test a Tool¶
Usage Examples¶
Check Your Profile¶
Analyze a Job¶
Analyze with Job Text¶
List Saved Jobs¶
Configuration File¶
Alternatively, edit ~/.mcporter/mcporter.json directly:
{
"mcpServers": {
"jobko": {
"baseUrl": "https://jobko.ai/api/mcp",
"description": "Jobko AI job matching",
"headers": {
"Authorization": "Bearer jk_YOUR_KEY"
}
}
}
}
Using in Conversations¶
Once configured, you can ask OpenClaw:
"Analyze this job for me: https://linkedin.com/jobs/view/123456"
"What's my current skill profile?"
"Check my Jobko credits"
"Generate a CV for job #42"
Troubleshooting¶
"Connection refused"¶
Make sure the URL is correct: https://jobko.ai/api/mcp
"Invalid API key"¶
- Check your key starts with
jk_ - Verify the key at jobko.ai/dashboard#agent
- Make sure there are no extra spaces
"Method not found"¶
Update mcporter to the latest version: