JobSelect CLI
Run JobSelect directly from your terminal using the Python package.
pip install jobselectJOBSELECT LABS / DEVELOPERS
Use the JobSelect CLI, hosted API, or MCP-compatible workflows to bring job-description skill analysis into your own tools.
Run JobSelect directly from your terminal using the Python package.
pip install jobselectSend a job description, role and job type to the hosted JobAnalyze service.
POST /JobAnalyze_6kConnect JobAnalyze capabilities to MCP-compatible AI-agent workflows.
YOUR_MCP_COMMANDStatic examples only. This page never executes API requests.
curl -X POST "https://job-description-analysis.onrender.com/JobAnalyze_6k" \
-H "Content-Type: application/json" \
-H "JobAnalyze_6k_Key: YOUR_API_KEY_HERE" \
-d '{
"Job_Desc": "Python and PyTorch AI Engineer",
"Role": "AI Engineer",
"Type": "Junior"
}'INPUT SCHEMA
Job_Desc · string · required
Role · string · optional
Type · string · optional
EXAMPLE RESPONSE
{
"skills": [
{
"name": "python",
"probability": 0.91
},
{
"name": "pytorch",
"probability": 0.84
}
]
}Use local inference when the required vectorizer, label vocabulary and model weights are available.
from api.pred import JobAnalyze_6k
result = JobAnalyze_6k(
job_desc, role="AI Engineer", job_type="Junior", top_k=50
)Use JobAnalyze capabilities within MCP-compatible workflows.
{
"name":"jobselect",
"type":"mcp",
"command":"YOUR_MCP_COMMAND"
}Placeholder only; no connection is made by this page.
01 · Install
pip install jobselect
02 · Get access
Obtain an API key through JobSelect.
03 · Analyze
Submit Job Description + Role + Type.
04 · Integrate
Use returned ranked skills in your workflow.