# Microgram: ats-check-format

`station__algovigilance__microgram-ats-check-format` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Check resume format for ATS parser compatibility. Evaluates file type, section headers, formatting complexity, contact info placement, and section count. Returns format_score (0-100) and parseable boolean.

## Agent metadata

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

## Input schema

- `file_type_compatible` *boolean* (required) — Whether the file type is ATS-compatible (.docx, .pdf)
- `has_standard_headers` *boolean* (required) — Whether standard section headers exist
- `uses_simple_formatting` *boolean* (required) — Whether formatting is single-column, no tables/text boxes
- `has_contact_info` *boolean* (required) — Whether contact info is in plain text at top
- `sections_detected` *number* (required) — Number of distinct sections detected

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-ats-check-format",
    "arguments": {
      "file_type_compatible": false,
      "has_standard_headers": false,
      "uses_simple_formatting": false,
      "has_contact_info": false,
      "sections_detected": 0
    }
  }
}
```

## Related

- [/tools](/tools) — all 7718 tools
- [/tools/algovigilance__microgram-ats-check-format](/tools/algovigilance__microgram-ats-check-format) — HTML page
- [/tools/algovigilance__microgram-ats-check-format/json](/tools/algovigilance__microgram-ats-check-format/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
