Claude Desktop Integration¶
Connect Jobko to Claude Desktop for native MCP support.
Prerequisites¶
- Claude Desktop installed
- A Jobko API key (get one here)
Setup¶
1. Open Claude Desktop Settings¶
- Open Claude Desktop
- Go to Settings → Developer → MCP Servers
- Click Edit Config
2. Add Jobko Configuration¶
Add this to your MCP config file:
{
"mcpServers": {
"jobko": {
"transport": "sse",
"url": "https://jobko.ai/api/mcp",
"headers": {
"Authorization": "Bearer jk_YOUR_KEY"
}
}
}
}
Replace jk_YOUR_KEY
Use your actual API key from jobko.ai/dashboard#agent
3. Restart Claude Desktop¶
Close and reopen Claude Desktop for the changes to take effect.
4. Verify Connection¶
In Claude Desktop, you should now see Jobko tools available. Try asking:
"What Jobko tools do I have access to?"
Usage Examples¶
Analyze a Job Posting¶
"Can you analyze this job for me? https://linkedin.com/jobs/view/123456"
Claude will use the analyze_job tool and provide:
- Match score
- Matching skills
- Missing skills
- Red flags
- Honest assessment
Check Your Profile¶
"What does my Jobko profile say about my skills?"
Generate a CV¶
"Generate a CV for the Senior Developer job I analyzed earlier"
Check Credits¶
"How many Jobko credits do I have left?"
Config File Locations¶
Full Config Example¶
{
"mcpServers": {
"jobko": {
"transport": "sse",
"url": "https://jobko.ai/api/mcp",
"headers": {
"Authorization": "Bearer jk_abc123def456"
}
}
}
}
Troubleshooting¶
Tools not showing up¶
- Make sure you restarted Claude Desktop
- Check the config file syntax (valid JSON)
- Verify your API key is correct
"Authentication required" error¶
Your API key may be invalid or expired. Generate a new one at jobko.ai/dashboard#agent.
Connection timeout¶
Check your internet connection and try again. The Jobko API should respond within a few seconds.