# screen-resume

`station__ats__screen-resume` · external (needs EXECUTION_BACKEND_URL configured) · domain `ats` · pv-relevance `non-pv`

Run the full ATS resume screening chain: format compliance → experience relevance → keyword match → gap detection → recommendation. Returns overall verdict (STRONG_MATCH, CONDITIONAL_MATCH, WEAK_MATCH, REJECT, RECONSIDER), pass probability, and prioritized fix list.

> **Note:** This tool routes through an external execution backend. If `EXECUTION_BACKEND_URL` is unset on the server, calls return JSON-RPC error `-32603 "Tool execution backend not configured"`. Tools with `backend: native` execute in-process and are always callable.

## Agent metadata

- `idempotent`: unknown
- `read_only`: unknown
- `expected_latency_ms`: unknown (not yet contract-tested)
- `cost_tokens_estimate`: unknown

## Input schema

- `file_type_compatible` *boolean* (required) — Whether the resume file type is ATS-compatible (.docx, .pdf)
- `has_standard_headers` *boolean* (required) — Whether standard section headers exist (Experience, Education, Skills)
- `uses_simple_formatting` *boolean* (required) — Whether formatting is ATS-parseable (no tables, columns, text boxes)
- `has_contact_info` *boolean* (required) — Whether contact info (name, email, phone) is in plain text at top
- `sections_detected` *integer* (required) — Number of distinct sections detected in the resume
- `matched_keywords` *integer* (required) — Number of job description keywords found in resume
- `total_keywords` *integer* (required) — Total keywords extracted from job description
- `direct_experience_years` *integer* — Years of directly relevant experience
- `transferable_experience_years` *integer* — Years of transferable experience from adjacent roles
- `required_years` *integer* — Years of experience required by job listing
- `missing_hard_skills` *integer* — Count of required hard skills not found in resume
- `missing_credentials` *integer* — Count of required credentials/certifications not held

## Example call

```json
POST /api/mcp
Content-Type: application/json

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__ats__screen-resume",
    "arguments": {
      "file_type_compatible": false,
      "has_standard_headers": false,
      "uses_simple_formatting": false,
      "has_contact_info": false,
      "sections_detected": 0,
      "matched_keywords": 0,
      "total_keywords": 0
    }
  }
}
```

## Related

- [/tools](/tools) — all 3062 tools
- [/tools/ats__screen-resume](/tools/ats__screen-resume) — HTML page
- [/tools/ats__screen-resume/json](/tools/ats__screen-resume/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
