Skip to main content
Glama
Vishu-ak

resumeforge

by Vishu-ak

Score resume against JD (ATS simulation)

score_resume
Read-only

Evaluates a resume 0-100 against a job description, mirroring ATS and recruiter ranking through weighted keywords, bullet quality, structure, and integrity checks. Pass candidate sources to flag unverified claims.

Instructions

Scores a resume 0–100 against a JD the way keyword-ranking ATS and recruiters do: weighted keyword match, keywords backed by bullets, title alignment, bullet quality (verbs, metrics), structure/parseability, length, and integrity (placeholders, stuffing). Pass candidate_sources to get a truth_check of unverified claims. Accepts a structured resume or plain text.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
resumeNoStructured resume (preferred)
companyNoCompany name, if known
jd_textYesFull job description text, including requirements and responsibilities
job_titleNoExact job title, if known (improves title matching)
resume_textNoOr plain resume text, e.g. to score the ORIGINAL resume for a before/after comparison
candidate_sourcesNoThe candidate's original materials. Enables truth_check, which flags claims with no evidence.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true secretarial, so no safety contradiction. The description adds useful behavioral context beyond that: it reveals how scoring works (weighted keywords, title alignment, bullet quality, integrity checks) and discloses the optional truth_check behavior when candidate_sources is provided.

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?

Two front-loaded sentences. The first begins with the action and enumerates concrete scoring factors; the second covers the optional truth_check mode and the two supported input forms. No word is wasted, and each sentence earns its place.

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

Completeness4/5

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

For a complex tool with nested schemas and no output schema, the description gives the score range and key inputs, and mentions the extra truth_check result. It does not describe the full output structure or breakdown, but an agent has enough information to invoke the tool correctly with jd_text plus either resume or resume_text.

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?

Schema description coverage is 100%, and the schema already documents candidate_sources as enabling truth_check and resume_text as supporting plain text. The description mostly restates these facts; it does not add meaningful parameter semantics beyond what the schema provides, so the baseline of 3 applies.

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 action and resource: 'Scores a resume 0–100 against a JD.' It then names the exact scoring dimensions, making the tool's function unambiguous and differentiating it from siblings like analyze_job_description or analyze_gaps, which address different parts of the workflow.

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

Usage Guidelines3/5

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

Usage is implied by the purpose statement: you use this when you need an ATS-style resume score against a JD. It provides one conditional instruction ('Pass candidate_sources to get a truth_check') and input format flexibility, but it never explicitly says when not to use it or how to select it over sibling tools.

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