{
  "name": "AlgoPass",
  "description": "AlgoPass is an advanced job-hunting and career advancement platform dedicated to optimizing resumes (CVs) for Applicant Tracking Systems (ATS) used by corporate HR departments. The system acts as a bridge between human candidates and AI recruitment software. It deeply analyzes provided job descriptions against the candidate's professional experience and skills, identifying critical missing keywords. Furthermore, AlgoPass generates highly parsable, OCR-compliant .docx CV files engineered to bypass automated HR rejection filters, drastically increasing the candidate's chances of securing a job interview.",
  "version": "1.2",
  "transport": "streamable-http",
  "tools": [
    {
      "name": "scan_cv_ats",
      "description": "Submits raw candidate experience and skills data against a specific job posting to analyze keyword density, ATS compatibility, and identify critical gaps preventing successful recruitment.",
      "endpoint": "https://algopass.pl/api/scan",
      "method": "POST",
      "inputSchema": {
        "type": "object",
        "properties": {
          "user_email": {
            "type": "string",
            "description": "The candidate's email address to receive the generated ATS report and optimized .docx file."
          },
          "job_description": { 
            "type": "string",
            "description": "The exact requirements and duties from the job advertisement."
          },
          "cv_experience": { 
            "type": "string",
            "description": "The candidate's current professional experience and employment history."
          },
          "cv_skills": { 
            "type": "string",
            "description": "The candidate's hard and soft skills."
          }
        },
        "required": ["user_email", "job_description", "cv_experience"]
      }
    }
  ]
}