Skip to main content
Glama
jrootn
by jrootn

Application Tracker MCP

A privacy-first Model Context Protocol server for managing job, fellowship, and graduate-school applications locally.

It gives an MCP client a durable local workspace for:

  • saving a job description and application status;

  • comparing a private factual profile to a role without inventing experience;

  • creating editable LaTeX CV and cover-letter starters;

  • producing an interview-prep scaffold;

  • discovering roles from opt-in public Greenhouse, Lever, and Ashby job-board APIs.

It does not submit applications, scrape logged-in sites, bypass CAPTCHAs/rate limits, or send data to a hosted service.

Why an MCP server?

An LLM is useful for interpreting a job description and drafting language. It should not be the database of record or silently decide facts about a candidate. This server keeps the repeatable operations local and explicit:

Private profile + job description
              ↓
      MCP tools: save / analyse / scaffold / track
              ↓
  Agent drafts wording from factual evidence
              ↓
       Human reviews, edits, and submits

The server owns tracking and document scaffolding. The MCP client owns conversational reasoning. The user owns the final claims and submission.

Related MCP server: Resume Assistant MCP

Privacy model

The public repository contains no applicant data. It includes only fictional examples.

  • Configure APPLICATION_TRACKER_ROOT to a private local directory.

  • Keep profiles, real application records, PDFs, job descriptions, and notes outside the repository or in ignored directories.

  • The server accepts only paths relative to APPLICATION_TRACKER_ROOT; it rejects absolute paths and path traversal.

  • Do not commit the configured data workspace. The included .gitignore ignores data/, applications/, private/, PDFs, and LaTeX build output.

Read SECURITY.md before using the server with sensitive information.

Quick start

Requires Python 3.10+ and the official Python MCP SDK.

git clone https://github.com/YOUR_GITHUB_USERNAME/application-tracker-mcp.git
cd application-tracker-mcp
python -m venv .venv
. .venv/bin/activate
pip install -e .

# Pick a private directory that is NOT inside the Git checkout.
export APPLICATION_TRACKER_ROOT="$HOME/.local/share/application-tracker"
application-tracker-mcp

The server uses MCP's standard stdio transport. The client launches it as a subprocess and communicates using JSON-RPC over standard input/output. See the MCP transport specification.

Example client configuration

Use a client configuration equivalent to the following (adapt the absolute paths):

{
  "mcpServers": {
    "application-tracker": {
      "command": "/absolute/path/to/application-tracker-mcp/.venv/bin/application-tracker-mcp",
      "env": {
        "APPLICATION_TRACKER_ROOT": "/absolute/private/path/application-tracker-data"
      }
    }
  }
}

MCP tools

Tool

Purpose

create_application

Saves a private application record and its job description.

list_applications

Lists records, optionally by status.

update_application_status

Tracks drafting, applied, interview, offer, rejected, and closed states.

analyse_application_fit

Matches only declared private profile skills/evidence against the saved JD.

render_application_drafts

Writes editable LaTeX CV and cover-letter starters plus a tailoring brief.

create_interview_prep

Creates a factual interview-practice scaffold.

compile_application_tex

Runs Tectonic on a generated .tex file without using a shell.

discover_public_jobs

Fetches roles from public Greenhouse, Lever, or Ashby APIs.

Example workflow

  1. Copy the fictional profile example into your private data workspace and replace it with your own verified facts.

  2. Ask an MCP client to call create_application with the job description.

  3. Call analyse_application_fit with a relative profile path such as private/profile.json.

  4. Ask the agent to write a factual tailoring brief using the returned evidence.

  5. Call render_application_drafts to create local, editable .tex files.

  6. Review and edit the files. If Tectonic is installed, call compile_application_tex.

  7. Use update_application_status as the process progresses.

  8. Before an interview, call create_interview_prep with only truthful highlights.

The examples/ directory is documentation only. It is deliberately fictional and does not demonstrate a real applicant.

Public job discovery

The repository has a small safe subset of the larger job-discovery concept. It supports only public APIs:

discover_public_jobs(provider="greenhouse", board="example-board", location_contains="Berlin")
discover_public_jobs(provider="lever", board="example-company")
discover_public_jobs(provider="ashby", board="example-company")

It intentionally does not scrape LinkedIn, StepStone, Xing, authenticated pages, or sites with CAPTCHAs. It does not apply to jobs.

LaTeX notes

render_application_drafts creates generic, editable LaTeX starters. The server never writes a real applicant's data into this repository; it only writes into your private workspace at runtime.

If Tectonic is on PATH, compile_application_tex can compile an artifact safely using argument lists, not a shell. Otherwise, compile the .tex file with your preferred local LaTeX workflow.

Development

python -m unittest discover -s tests -v
python -m compileall src tests

The server targets the official Python MCP SDK v2 (mcp>=2,<3), whose high-level server class is MCPServer. SDK migration notes

Project status

This is an early local-first foundation. Good next additions are encrypted-at-rest user storage, a richer document-template system, more public ATS connectors, and client-specific installation guides.

Available Tools

8 tools
analyse_application_fitA

Compare a private JSON profile to the saved job description without inventing claims.

ParametersJSON Schema
NameRequiredDescriptionDefault
application_idYes
profile_json_pathYes

TDQS

A3.6/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. 'Without inventing claims' hints at honesty but does not disclose potential side effects, permissions, or output format. It is insufficient for a tool that might read files and produce a fit assessment.

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 a single, front-loaded sentence with zero wasted words. It efficiently conveys the tool's action and a key constraint.

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

Completeness3/5

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

The tool is simple with 2 parameters and no output schema, but the description does not explain what the tool returns or any prerequisites (e.g., that the application must exist). It is minimally viable for comprehension but lacks completeness regarding expected outcome.

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

Parameters2/5

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

Schema coverage is 0% and the description does not explicitly explain either parameter. However, the noun phrases 'private JSON profile' and 'saved job description' give implicit clues that profile_json_path likely points to the profile and application_id identifies the job description, offering limited semantic value.

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 uses a specific verb 'Compare' and identifies the resources ('private JSON profile', 'saved job description'), clearly distinguishing it from sibling tools like create_application or render_application_drafts. The phrase 'without inventing claims' adds unique specificity about the tool's function.

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 implies use when a profile and a saved job description exist and a fit comparison is needed. It provides a clear context but does not explicitly mention when not to use it or name alternatives among the siblings, warranting a 4 rather than a 5.

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

compile_application_texB

Compile a generated local .tex artifact with Tectonic; no shell command is used.

ParametersJSON Schema
NameRequiredDescriptionDefault
tex_filenameYes
application_idYes

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It adds one meaningful behavioral detail ('no shell command is used'), which is a safety-relevant trait. However, it omits other aspects like output format, side effects, or error behavior, so transparency is moderate but not comprehensive.

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 a single, front-loaded sentence that conveys the core action and a key safety note without filler. Every word earns its place, making it highly concise and well-structured.

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

Completeness2/5

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

There is no output schema or annotations, so the description must explain the tool's effects and returns. It does not mention what the compilation produces (e.g., a PDF), whether any files are modified, or how to use the result. For a simple tool with two params, the description is too thin to fully guide an agent, especially given its lack of relationship to sibling tools.

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

Parameters1/5

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

Schema description coverage is 0% and the description does not explain either parameter (tex_filename, application_id) or how they relate to the compilation. The parameter names are somewhat self-explanatory, but the description adds no meaning beyond the schema, failing to compensate for the lack of schema descriptions.

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 clearly states the action ('Compile') and the specific resource ('generated local .tex artifact') using Tectonic. This distinguishes it from siblings like render_application_drafts, which likely generates the .tex file, making the purpose unambiguous.

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?

The phrase 'generated local .tex artifact' implies this tool operates on output from a prior step (e.g., render_application_drafts), giving some usage context. However, it doesn't explicitly state when to use this versus alternatives or mention any exclusions, leaving the guidance mostly implied.

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

create_applicationA

Create a private application record and save its job description locally.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNo
companyYes
locationNo
work_modeNo
role_titleYes
source_urlNo
job_descriptionYes

TDQS

A3.7/5.0
Behavior3/5

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

Without annotations, the description carries the full burden. It adds context about privacy ('private') and storage location ('locally') but doesn't disclose permissions, reversibility, or return behavior. This is a moderate level of transparency.

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 a single, front-loaded sentence with no redundancy. Every phrase adds value, making it highly concise.

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

Completeness2/5

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

Given 7 parameters, no annotations, and no output schema, the one-sentence description is insufficient. It omits usage context, parameter semantics, and behavioral details, leaving significant gaps for an agent.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. It only alludes to 'job_description' but fails to explain other parameters like tags, location, work_mode, source_url, or their relationships. This provides minimal assistance.

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 clearly states the tool's function: 'Create a private application record and save its job description locally.' It uses a specific verb and resource, and distinguishes it from siblings like list_applications and update_application_status.

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 implies usage when creating a new application record, but does not explicitly mention when not to use it or name alternatives. It provides clear context for the primary use case, earning a 4.

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

create_interview_prepA

Create a private interview-preparation scaffold from factual highlights.

ParametersJSON Schema
NameRequiredDescriptionDefault
application_idYes
factual_highlightsYes

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It reveals the tool creates a 'private' scaffold, implying access control, and that it depends on factual highlights. However, it does not disclose side effects, permissions, or what 'scaffold' entails in terms of behavior or output.

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?

A single, concise sentence that front-loads the primary action and purpose. No wasted words, and the structure is straightforward.

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

Completeness2/5

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

Given no output schema and no annotations, the description needs to explain what the scaffold looks like, how application_id is used, or what the return value is. It only states the input and action, leaving significant gaps for a creation tool.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. It directly mentions 'factual highlights', which helps clarify that parameter, but 'application_id' is never addressed. The description only partially maps to the parameters, leaving the second parameter under-defined.

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 states a specific verb ('Create') and resource ('interview-preparation scaffold'), and the input source ('factual highlights') adds clarity. This clearly distinguishes it from sibling tools like create_application or analyse_application_fit.

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 phrase 'from factual highlights' gives clear context for when this tool is appropriate: when you have factual highlights and need interview prep. It does not explicitly mention alternatives or exclusions, but the purpose is specific enough to guide selection.

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

discover_public_jobsA

Discover listed jobs from a public Greenhouse, Lever, or Ashby API board.

This does not log in, bypass restrictions, scrape LinkedIn, or auto-apply.

ParametersJSON Schema
NameRequiredDescriptionDefault
boardYes
limitNo
providerYes
location_containsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It discloses what the tool does NOT do (no login, no bypass, no scraping, no auto-apply), which is useful. However, it does not explicitly state whether the tool is read-only, whether it makes external network calls, or any potential side effects/rate limits. The exclusions give some transparency but leave gaps.

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 extremely concise: two sentences. The first sentence states the purpose and scope, the second provides important exclusions. Every word earns its place, and the structure is front-loaded with the essential purpose.

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

Completeness3/5

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

Given the tool has 4 parameters, an output schema, and no annotations, the description provides adequate but incomplete context. It explains the overall function and explicitly notes what it does not do, which helps. However, it lacks guidance on how the parameters interconnect (e.g., what a 'board' looks like, how 'limit' behaves) and what the return structure implies. The existence of an output schema reduces the need to describe return values, but gaps remain.

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?

The input schema has 0% description coverage, so the description must compensate. It does add meaning by listing the accepted providers ('Greenhouse, Lever, or Ashby'), which goes beyond the schema's generic 'Provider' string. However, it does not explain 'board', 'limit', or 'location_contains', although their names are somewhat self-explanatory. The coverage gap is only partially filled.

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 uses a specific verb 'Discover' and names the specific resource: 'listed jobs from a public Greenhouse, Lever, or Ashby API board.' It clearly distinguishes itself from sibling tools that focus on applications (e.g., create_application, update_application_status) by focusing on job discovery. The scope is precise, including the public API nature and the supported platforms.

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 provides clear context: it discovers jobs from public API boards. It also gives explicit exclusions ('This does not log in, bypass restrictions, scrape LinkedIn, or auto-apply'), which helps set when-not-to-use boundaries. However, it does not name alternative tools or explicitly state 'use this when...' but the context is strong enough to infer its intended use relative to siblings.

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

list_applicationsA

List private application records, optionally filtered by their status.

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.6/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It says 'private' which hints at access control, but it does not mention permissions, pagination, sorting, or any side effects. It reads as a simple read operation but omits context that an agent would need, such as whether it returns only the current user's records or all accessible private records.

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 a single, focused sentence that front-loads the primary action and resource, then adds the filtering option without any redundant words or filler. It is highly concise and well-structured.

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 simple list tool with one optional parameter and an output schema present, the description is largely sufficient. It states what is listed and the filtering capability, and the output schema covers return values. Some missing nuance like auth scoping exists, but it is not critical for a basic list operation.

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?

The schema's status parameter has no description, so the tool description's mention of 'optionally filtered by their status' adds meaning by explaining the purpose of the parameter. However, it does not enumerate allowed status values or provide examples, so it only partially compensates for the 0% schema description coverage.

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 uses the specific verb 'List' with a clear resource 'private application records', and adds a key optional filter by status. This clearly distinguishes it from sibling tools like create_application, update_application_status, and especially discover_public_jobs, which is about public jobs rather than private applications.

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?

The phrase 'optionally filtered by their status' implies the tool is for viewing applications and supports a filtering use case, but it does not explicitly state when to use this tool versus alternatives or provide exclusions. There is no direct comparison to siblings, so the guidance is only implied.

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

render_application_draftsC

Write editable LaTeX CV/cover-letter starters and a factual tailoring brief locally.

ParametersJSON Schema
NameRequiredDescriptionDefault
application_idYes
tailoring_briefYes
profile_json_pathYes

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations, the description carries full responsibility for behavioral disclosure. It states the tool 'writes' and does so 'locally,' which implies a file-writing side effect. However, it does not mention whether files are overwritten, what permissions are needed, or any other consequences of the write operation. This is minimal disclosure.

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

Conciseness3/5

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

The description is a single, front-loaded sentence without redundant words. However, it is under-specified for the complexity of the tool, so the conciseness is achieved at the expense of necessary information.

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

Completeness2/5

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

Given the tool has 3 required parameters, no output schema, and no annotations, the description is incomplete. It explains the general output type but does not clarify how the parameters influence the output, what the tailoring brief should contain, or what 'locally' means in terms of file paths or return values.

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

Parameters1/5

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

Schema description coverage is 0%, and the description provides no explanation of the three parameters (application_id, profile_json_path, tailoring_brief). The phrase 'tailoring brief' appears but is not tied to the parameter. The description fails to compensate for the lack of schema documentation.

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 clearly states a specific action ('Write') and specific outputs ('editable LaTeX CV/cover-letter starters and a factual tailoring brief') with a location scope ('locally'). This distinguishes it from siblings like compile_application_tex, which focuses on compilation rather than drafting.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives. It does not mention prerequisites, exclusions, or contrast with related tools like analyse_application_fit or compile_application_tex. The usage context is only implied by the description's verb and output.

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

update_application_statusC

Update one application status and optional private notes.

ParametersJSON Schema
NameRequiredDescriptionDefault
notesNo
statusYes
application_idYes

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It adds minimal context: 'one application' implies a single record, and 'private notes' suggests privacy. However, it does not disclose mutation effects, error handling, permissions, idempotency, or whether statuses are validated. This lack of behavioral detail for a write operation is a significant gap.

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

Conciseness4/5

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

The description is a single sentence that is concise and front-loaded with the core action. It avoids fluff and uses precise qualifiers ('one', 'optional', 'private'). However, it is slightly under-specified, which limits the value of its brevity.

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

Completeness2/5

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

Given the tool's simplicity (3 parameters, no annotations, no output schema), the description is incomplete. It does not explain how to identify the application, what statuses are valid, the return value, or side effects. This is inadequate for safe usage, especially without annotation support.

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

Parameters2/5

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

The description mentions 'status' and 'notes' but does not explain their semantics beyond the schema. It omits application_id entirely. With schema description coverage at 0%, the description should compensate by explaining allowed status values, notes formatting, or parameter relationships, but it does not. The only added meaning is that notes are 'private' and that the operation targets 'one application.'

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

Purpose4/5

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

The description clearly states a specific action: 'Update one application status and optional private notes.' It identifies the resource (application) and the operation (update), which distinguishes it from sibling tools like create_application, list_applications, and analyse_application_fit. However, it does not explicitly mention how to differentiate it from alternatives, so it falls short of a 5.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus alternatives. The description does not provide context such as 'use when you need to change a status' or mention any prerequisites or exclusions. It simply defines the action without situating it among the sibling tools.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 8 tool updatesv0.1.0
    • First observedanalyse_application_fit
    • First observedcompile_application_tex
    • First observedcreate_application
    • First observedcreate_interview_prep
    • First observeddiscover_public_jobs
    • First observedlist_applications
    • First observedrender_application_drafts
    • First observedupdate_application_status

TDQS

A3.6/5.0
Disambiguation5/5

Each tool targets a distinct action and resource: create/list/update applications, analyse fit, render drafts, create interview prep, compile TeX, and discover jobs. There is no overlap or ambiguity between tool purposes.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern (create_application, list_applications, update_application_status, analyse_application_fit, etc.). The only minor deviation is the British spelling 'analyse' vs 'analyze', but the pattern is uniform.

Tool Count5/5

Eight tools is well within the ideal 3-15 range and each tool serves a clearly defined function in the application tracking workflow. The count feels appropriate for the domain and not excessive or thin.

Completeness4/5

The toolset covers the core lifecycle: create, list, update, analyse, render, compile, and prepare for interviews. A delete application tool is missing, and there is no explicit single-application getter, but list_applications can serve that need, so the gaps are minor.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    B
    maintenance
    Hosted MCP server for job search (3M+ jobs from employer career pages and ATS feeds like Lever/Greenhouse), PDF resume generation with multiple templates, AI resume tailoring per job description, cover letters, and career advice. Free hosted endpoint, no API key required.
    3
    304
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    An MCP server that enables AI-assisted job search workflows including job discovery, application tracking, resume evaluation, and cover letter generation, with support for multiple job sources and scheduled scraping.
    18
    1
    AGPL 3.0
  • A
    license
    Not graded
    quality
    A
    maintenance
    A local-first, open-source MCP server that analyzes jobs, matches your CV, tailors documents, and tracks applications — all on your machine with no data uploaded.
    AGPL 3.0

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jrootn/application-tracker-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server