Skip to main content
Glama
jmaitlandsoto

ats-scanner-mcp

ATS scan resume against job posting

scan_resume
Read-only

Compare a resume against a job posting to get a match score, missing required and preferred skills, and concrete suggestions for improving the resume.

Instructions

Jobscan-style ATS scan. Scores a resume against a job posting (0-100 match rate), lists matched and MISSING hard/soft skills with importance (required vs preferred) and counts, checks title/education/years-of-experience fit, runs searchability & formatting checks, and returns concrete suggestions. Use resume_text to re-score a draft after edits.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
formatNomarkdown = readable report; json = structured data; both.markdown
job_textYesFull text of the job posting (paste everything: title, responsibilities, requirements, nice-to-haves).
job_titleNoOverride the detected job title if the posting's first line isn't the title.
resume_pathNoPath to the resume (.pdf, .md, .txt). Absolute, ~-relative, or a bare file name inside the resume folder (/root/Documents/Resumes).
resume_textNoRaw resume text — use this to re-score an edited draft without saving a file.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the readOnlyHint annotation, the description reveals substantial behavioral detail: it computes a 0-100 score, flags matched and missing skills with importance levels, checks title/education/years-of-experience fit, runs searchability/formatting checks, and returns suggestions. This gives an agent a solid model of what will happen when invoked.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no filler. The first packs in the action, scope, and deliverable list; the second adds a direct usage tip. Every phrase contributes value, and the most important information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity, the description covers the full scope of behavior without requiring an output schema: scoring, skill matching, fit checks, formatting/searchability checks, and suggestions. Combined with complete schema descriptions and the readOnlyHint annotation, an agent has enough context to select and invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema coverage is 100%, so the schema already documents all five parameters thoroughly, making 3 the baseline. The description adds one meaningful workflow hint about using resume_text for re-scoring, but most parameter meaning is adequately carried by the schema itself.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb+resource ('Scores a resume against a job posting') and immediately identifies the tool as a 'Jobscan-style ATS scan', clearly differentiating it from siblings like parse_resume, list_resumes, and compare_resumes. The listed concrete outputs (match rate, missing skills, fit checks, suggestions) leave no ambiguity about what the tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly establishes the core use case: scan a resume against a specific job posting. It also gives a concrete workflow pointer ('Use resume_text to re-score a draft after edits'), showing when the resume_text parameter is appropriate. It does not explicitly name alternative tools or exclusion conditions, so it stops short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.