Job application tracker for developers - AI agents write over MCP, you review in a dashboard.
Inferido de los transportes que declara este listado (streamable-http). Que un cliente no aparezca aquí no significa que se haya descartado: simplemente Forge no puede confirmarlo.
La verificación confirma la identidad del publicador (la propiedad del repo), no la seguridad del código. El análisis de seguridad cubre los CVE conocidos y los scripts de instalación sospechosos.
Leído de un handshake MCP real initialize → tools/list contra el endpoint declarado. No se invocó ninguna herramienta: tools/list es la llamada de introspección de solo lectura que el protocolo define para esto. Refleja lo que el servidor anunciaba en ese momento; un endpoint alojado no está fijado a ninguna versión y puede cambiar sin avisar.
https://app.jobctl.app/mcp11 herramientas · 622 msadd_applicationTrack a new job application. Pass either a single `raw` line — `add_application({raw: "Bosch, Tech Lead, prio A, due friday, remote, via LinkedIn"})` — or structured fields (`company` and `role` required then). Returns the created application and possible-duplicate warnings; if duplicates are liste…Track a new job application. Pass either a single `raw` line — `add_application({raw: "Bosch, Tech Lead, prio A, due friday, remote, via LinkedIn"})` — or structured fields (`company` and `role` required then). Returns the created application and possible-duplicate warnings; if duplicates are liste…
| Parámetro | Tipo | Descripción |
|---|---|---|
| raw | string | Free-form line: "Company, Role, prio A|B|C, due <date>, remote|hybrid|onsite, via <source>, https://…, in <location>, applied <date>" |
| company | string | — |
| role | string | — |
| status | string | — |
| priority | string | A = top priority |
| remote | string | — |
| remote_note | string | e.g. "2 days office" |
| source | string | LinkedIn, referral, recruiter, Easy Apply… |
| url | string | Link to the job posting |
| location | string | — |
| salary_asked | integer | What the candidate asked for — yearly gross EUR as a plain number, e.g. 110000 |
| salary_range_min | integer | Posting salary range lower bound — yearly gross EUR, plain number |
| salary_range | integer | Posting salary range upper bound — yearly gross EUR, plain number |
| cv_variant | string | Which CV was sent: DE, EN, AI-focused… |
| match_notes | string | Markdown match assessment: why the candidate fits this role — strengths vs requirements, gaps, level/salary advice, process notes. Save your vacancy analysis h… |
| next_interview_at | string | ISO datetime, e.g. 2026-07-20T14:00:00+02:00 |
| next_action | string | e.g. "follow-up", "thank-you email" |
| next_action_due | string | ISO date YYYY-MM-DD |
| applied_at | string | ISO date YYYY-MM-DD |
list_applicationsList job applications. Filter by view (active = default working set, archive = rejected/withdrawn/no-response), status list, priority, or free-text search in company/role. Example: `list_applications({view: "active"})`, `list_applications({q: "bosch"})`.List job applications. Filter by view (active = default working set, archive = rejected/withdrawn/no-response), status list, priority, or free-text search in company/role. Example: `list_applications({view: "active"})`, `list_applications({q: "bosch"})`.
| Parámetro | Tipo | Descripción |
|---|---|---|
| view | string | — |
| status | string | Comma-separated: started_apply, waiting_referral, applied, waiting, interview, offer, accepted, rejected, no_response, on_hold, withdrawn, archived |
| priority | string | — |
| q | string | Search in company/role |
| limit | integer | — |
update_applicationUpdate fields of an application (get the id from list_applications). Status changes are logged to the timeline automatically. Example: `update_application({id: "…", status: "interview", next_action: "prepare system design", next_action_due: "2026-07-20"})`.Update fields of an application (get the id from list_applications). Status changes are logged to the timeline automatically. Example: `update_application({id: "…", status: "interview", next_action: "prepare system design", next_action_due: "2026-07-20"})`.
| Parámetro | Tipo | Descripción |
|---|---|---|
| id* | string | — |
| company | string | — |
| role | string | — |
| status | string | — |
| priority | string | A = top priority |
| remote | string | — |
| remote_note | string | e.g. "2 days office" |
| source | string | LinkedIn, referral, recruiter, Easy Apply… |
| url | string | Link to the job posting |
| location | string | — |
| salary_asked | integer | What the candidate asked for — yearly gross EUR as a plain number, e.g. 110000 |
| salary_range_min | integer | Posting salary range lower bound — yearly gross EUR, plain number |
| salary_range | integer | Posting salary range upper bound — yearly gross EUR, plain number |
| cv_variant | string | Which CV was sent: DE, EN, AI-focused… |
| match_notes | string | Markdown match assessment: why the candidate fits this role — strengths vs requirements, gaps, level/salary advice, process notes. Save your vacancy analysis h… |
| next_interview_at | string | ISO datetime, e.g. 2026-07-20T14:00:00+02:00 |
| next_action | string | e.g. "follow-up", "thank-you email" |
| next_action_due | string | ISO date YYYY-MM-DD |
| applied_at | string | ISO date YYYY-MM-DD |
add_noteAppend a free-text note to an application timeline — recruiter call summaries, interview instructions, pasted messages. Multiline markdown is fine. Example: `add_note({application_id: "…", text: "Recruiter: team of 5, on-call rotation, offer range 85-95k"})`.Append a free-text note to an application timeline — recruiter call summaries, interview instructions, pasted messages. Multiline markdown is fine. Example: `add_note({application_id: "…", text: "Recruiter: team of 5, on-call rotation, offer range 85-95k"})`.
| Parámetro | Tipo | Descripción |
|---|---|---|
| application_id* | string | — |
| text* | string | — |
log_interviewLog an interview for an application (max 10 per application): when it takes place, its status (planned or done), who attends (each with an optional profile link), related links (prep materials the company sent, meeting URL), and a short recap of what was discussed. Also keeps the application's next…Log an interview for an application (max 10 per application): when it takes place, its status (planned or done), who attends (each with an optional profile link), related links (prep materials the company sent, meeting URL), and a short recap of what was discussed. Also keeps the application's next…
| Parámetro | Tipo | Descripción |
|---|---|---|
| application_id* | string | — |
| scheduled_at* | string | ISO datetime with offset, e.g. 2026-07-20T14:00:00+02:00 |
| status | string | planned (default) or done |
| attendees | array | Who attends, each with an optional profile link |
| links | array | Related links: prep materials, meeting URL, docs |
| recap | string | Short recap of what was discussed |
get_dueWhat is burning today: applications with next_action_due today or overdue. Call this when the user asks "what should I do today?" about their job search.What is burning today: applications with next_action_due today or overdue. Call this when the user asks "what should I do today?" about their job search.
No se publicó ningún esquema de entrada para esta herramienta.
get_plannedWhat is actually SCHEDULED: interviews with their time, attendees and meeting links, plus the actions falling due, for today, tomorrow, or the next seven days. Use this whenever the user asks what is planned, what the day or week looks like, or before proposing a time to anyone — get_due only knows…What is actually SCHEDULED: interviews with their time, attendees and meeting links, plus the actions falling due, for today, tomorrow, or the next seven days. Use this whenever the user asks what is planned, what the day or week looks like, or before proposing a time to anyone — get_due only knows…
| Parámetro | Tipo | Descripción |
|---|---|---|
| range | string | today (default), tomorrow, or week (today plus the next 6 days) |
attach_analysisAttach a markdown company analysis (research you produced) to an application. Single document per application — a new call REPLACES the previous one. Max 100000 bytes (~100 KB) of utf-8. The user reads it in the dashboard, e.g. before an interview. Example: `attach_analysis({application_id: "…", ma…Attach a markdown company analysis (research you produced) to an application. Single document per application — a new call REPLACES the previous one. Max 100000 bytes (~100 KB) of utf-8. The user reads it in the dashboard, e.g. before an interview. Example: `attach_analysis({application_id: "…", ma…
| Parámetro | Tipo | Descripción |
|---|---|---|
| application_id* | string | — |
| markdown* | string | The analysis as markdown |
attach_fileAttach or replace a file on an application so the user sees it in the dashboard: a CV/resume (kind: 'cv') or a cover letter (kind: 'cover_letter'). Pass the file bytes as base64 in data_base64. One file per (application, kind) - a new call REPLACES the previous one. Max ~5 MB; pdf/doc/docx/txt/md (…Attach or replace a file on an application so the user sees it in the dashboard: a CV/resume (kind: 'cv') or a cover letter (kind: 'cover_letter'). Pass the file bytes as base64 in data_base64. One file per (application, kind) - a new call REPLACES the previous one. Max ~5 MB; pdf/doc/docx/txt/md (…
| Parámetro | Tipo | Descripción |
|---|---|---|
| application_id* | string | — |
| kind* | string | — |
| filename* | string | — |
| data_base64* | string | Base64-encoded file bytes |
| mime | string | Optional; inferred from the filename extension when omitted |
attach_interview_fileAttach prep material to a specific interview so the user sees it next to that round in the dashboard: the prep document you wrote, the job description, a deck, notes the company sent. Max 3 files per interview, 20000000 bytes (20 MB) each; pass the bytes as base64. Get interview ids from get_applic…Attach prep material to a specific interview so the user sees it next to that round in the dashboard: the prep document you wrote, the job description, a deck, notes the company sent. Max 3 files per interview, 20000000 bytes (20 MB) each; pass the bytes as base64. Get interview ids from get_applic…
| Parámetro | Tipo | Descripción |
|---|---|---|
| application_id* | string | — |
| interview_id* | string | — |
| filename* | string | — |
| data_base64* | string | Base64-encoded file bytes |
| mime | string | Optional; inferred from the filename extension when omitted |
get_applicationFull detail of one application: all fields, contacts, recent timeline events, and whether a company analysis is attached (fetch it via the dashboard or attach_analysis to replace).Full detail of one application: all fields, contacts, recent timeline events, and whether a company analysis is attached (fetch it via the dashboard or attach_analysis to replace).
| Parámetro | Tipo | Descripción |
|---|---|---|
| id* | string | — |
11 de 11 herramientas publicaron una descripción.
Los nombres y descripciones de las herramientas los escribe el publicador y se muestran literalmente como texto inerte. Son las cadenas que un cliente MCP pasa al modelo, así que Forge las analiza en busca de patrones de inyección de prompts — cualquier hallazgo aparece junto al análisis de seguridad de arriba. «Privilegiada» es una coincidencia de palabra clave en el nombre de la herramienta, no una auditoría de lo que hace: un nombre inofensivo puede hacer cualquier cosa.
Job application tracker for developers - AI agents write over MCP, you review in a dashboard.
Los nombres enlazados abren el índice de Forge con todas las entradas que se observó que exponen esa herramienta. Ver todas las herramientas indexadas.
Esta entrada no publica ningún paquete de npm, así que Forge no tiene un árbol de dependencias para ella. Es una carencia de cobertura, no una afirmación de que no tenga dependencias.