EuropassMCP
EuropassMCP is an MCP server that lets an AI agent build a Europass CV section by section and export it as schema-valid Europass XML or as a PDF with the XML attached.
Create named CV drafts that live in memory for the session
Set the CV owner's personal details (required section)
Add work experience entries, most recent first
Add education or training entries
Add language skills with CEFR levels and mother-tongue flag
Add digital/computer skills as free text
Look up Europass country, language, and ISCO-88 occupation codes
Validate a draft against the Europass 3.0.3 XML schema, with suggestions for refused code values
Export a finished CV as strictly schema-compliant Europass XML
Export a finished CV as a PDF containing the XML as an attachment, returned as a resource link
Refuse invalid or unexportable drafts rather than producing non-compliant output
Allows creating and managing Europass CVs, validating them against the official EU XML schema, and exporting them as schema-compliant Europass XML or as a PDF with the XML embedded.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@EuropassMCPBuild my Europass CV and export it as XML"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
EuropassMCP
An MCP server that lets an AI agent assemble a Europass CV and export it as strictly schema-compliant Europass XML, or as a PDF carrying that XML inside it.
The Europass CV is the European Union's standardised curriculum vitae format. Its machine-readable form is an XML document conforming to the Europass CV XML Schema Definition version 3.0.3. This server gives an agent a handful of small, section-scoped tools for filling one in over the course of a conversation, and refuses to export anything the schema would reject, so "almost valid" is not a state a finished document can reach.
Unofficial
This project is not affiliated with, endorsed by, or produced by the European Union, the European Commission or Cedefop. It ships no EU emblem and no Europass wordmark; the PDF it produces is an independent look-alike of the Europass layout, not the official document, and says so on the page. Europass is a trademark of the European Union.
The one European Union asset this repository redistributes is the XML schema itself, under the EUPL-1.1 grant its authors published it with. See Licensing.
Requirements
Python 3.11 or newer.
An MCP client that can launch a server over stdio.
For PDF export only, four system libraries that pip cannot install. See With PDF export.
Related MCP server: Scribo MCP Server
Installation
One line
curl -fsSL https://raw.githubusercontent.com/Tsadoq/EuropassMCP/main/install.sh | bashThat installs uv if it is missing, installs the server as a uv tool, and
registers it with your client: through claude mcp add when the Claude
command-line interface is on your PATH, and otherwise by merging a single
mcpServers entry into claude_desktop_config.json. The merge rewrites that one
entry and leaves every other server in the file alone, so running the command
twice still leaves exactly one europassmcp.
Flags reach the script through the pipe by way of bash -s --:
curl -fsSL https://raw.githubusercontent.com/Tsadoq/EuropassMCP/main/install.sh | bash -s -- --with-pdf--with-pdf adds the PDF extra and then points you at
With PDF export for the system libraries it cannot install
for you. --config-only skips straight to registering the client, for an
install you already have.
Piping a URL into a shell runs whatever that URL serves. If that is not a trade you want, the script is a file like any other:
curl -fsSL https://raw.githubusercontent.com/Tsadoq/EuropassMCP/main/install.sh -o install.sh
less install.sh
bash install.shBy hand
The commands in this section name
europassmcpon PyPI, which is not there yet. See Until the PyPI release for the forms that resolve today.
The server speaks MCP over stdio, so in normal use a client launches it rather than you running it by hand. What the script does on your behalf is install the server and write that launch command into the client's configuration:
uv tool install europassmcp # or: uv tool install 'europassmcp[pdf]'followed by the stanza under Client configuration.
Installing up front is optional, though. The commands below launch the server
through uvx, which fetches it on demand; either one is what goes into that
stanza, and running one in a terminal starts a server that waits on stdin.
XML only
uvx europassmcpNothing outside Python is needed. Every tool works except export_pdf, which
refuses with a message naming the command that would fix it.
With PDF export
PDF export goes through WeasyPrint, which loads Pango, PangoFT2, HarfBuzz and
fontconfig through the C ABI at import time. pip cannot install any of them,
so europassmcp[pdf] installs cleanly on a machine that has none of them and
then refuses every PDF.
Install them with the system package manager before you install the extra. If
you do not, export_pdf answers with the same refusal it gives an install that
never had the extra at all: the underlying
OSError: cannot load library 'libpango-1.0-0' is caught and never reaches you.
So on an install that does already have europassmcp[pdf], that refusal means
these libraries are the part that is missing.
On Debian and Ubuntu:
sudo apt install libpango-1.0-0 libpangoft2-1.0-0 libharfbuzz0b libfontconfig1On macOS, with Homebrew:
brew install pangoHomebrew pulls glib, harfbuzz and fontconfig in as dependencies of pango. WeasyPrint's installation guide is the authority for other platforms and for troubleshooting a load that fails anyway.
Optionally add libharfbuzz-subset0 (Debian and Ubuntu; Homebrew's harfbuzz
already includes it). Without it PDFs still render, but every font is embedded
whole instead of subsetted, which makes the file considerably larger.
Then:
uvx --from 'europassmcp[pdf]' europassmcpUntil the PyPI release
The repository is public, so the one-line installer downloads and runs. What is
still missing is the PyPI release, which is what every command above that names
europassmcp on its own needs: uv tool install europassmcp, uvx europassmcp,
and the [pdf] form of each fail to resolve until it exists.
A direct reference to this repository is the same two paths by another route, and both work today:
uvx --from 'europassmcp @ git+https://github.com/Tsadoq/EuropassMCP' europassmcp
uvx --from 'europassmcp[pdf] @ git+https://github.com/Tsadoq/EuropassMCP' europassmcpEither one is also what belongs in the args of the
client stanza, after --from.
The installer needs no such adjustment. It asks the index whether the package is published and installs from this repository for as long as the answer is no, so it installs the release the day there is one without being edited, and the stanza it writes names whichever source it installed from.
Against a clone, uvx --from . europassmcp and uvx --from '.[pdf]' europassmcp
are those two paths once more, and bash install.sh --config-only still
registers the client.
This section describes a state that ends with the first release, and docs/releasing.md is where the step that deletes it lives.
Client configuration
Most MCP clients take the same mcpServers stanza; in Claude Desktop it lives in
claude_desktop_config.json.
{
"mcpServers": {
"europassmcp": {
"command": "uvx",
"args": ["europassmcp"]
}
}
}With PDF export, the extra moves into the arguments:
{
"mcpServers": {
"europassmcp": {
"command": "uvx",
"args": ["--from", "europassmcp[pdf]", "europassmcp"]
}
}
}Until europassmcp reaches PyPI, those args have to name this repository
instead; see Until the PyPI release.
Compiling the schema takes roughly three seconds, once, while the server starts. A client that times out a server's first response quickly may need a longer startup allowance.
What the agent gets
Drafts live in memory for the length of the session, keyed by a name the agent chooses, and are built up section by section. Nothing is written to disk.
Tool | What it does |
| Starts a new empty draft under a name of the agent's choosing. |
| Records who the CV is about. The one section a valid CV cannot omit. |
| Appends one job, in the order it should be printed. |
| Appends one qualification or training period. |
| Appends one language with its CEFR levels, mother tongues included. |
| Appends one digital or computer skill. |
| Finds Europass country codes from a country name in any of the languages the schema documents. |
| Finds Europass language codes the same way. |
| Finds ISCO-88 occupation codes from a job description. |
| Reports everything the schema objects to, with the nearest valid values for a refused code. |
| Returns the finished CV as Europass XML. Refuses a draft that would not validate. |
| Lays the CV out as a PDF with the XML attached, and returns a link to it. |
Two of these carry most of the design. The lookup tools exist because the
vendored code lists hold 1350 members, including 564 occupations and 197 country
codes, which is far more than belongs in a tool description or in a model's
context; the agent searches instead of being handed a list. And validate_cv
answers a refused value with the valid values spelled most like it, so a rejected
ITA comes back with IT, which is the same search from the other direction.
The PDF comes back as a resource link rather than as inlined bytes, because a document of several hundred kilobytes would otherwise be replayed into the model's context on every later turn. The source XML travels inside the PDF as a file attachment, so the document a person receives is still the document a machine can read back.
The vendored schema
The twelve XSD files under src/europassmcp/schema/ are vendored rather than
fetched, because there is nowhere left to fetch them from: every URL under
europass.cedefop.europa.eu/xml/ has answered with a redirect to a marketing
page since roughly 2021. They were recovered from the Internet Archive.
docs/schema-provenance.md records where each file
came from, the one modification made to them, and how to repeat the recovery.
Licensing
This distribution aggregates two separately licensed bodies of work, kept in separate directories so that neither licence has to be read as covering the other.
First-party code, which is everything except
src/europassmcp/schema/, is under the MIT Licence inLICENSE.The vendored Europass XML Schema Definition, in
src/europassmcp/schema/, is Copyright European Union 2002-2010, published by Cedefop under the European Union Public Licence version 1.1 (EUPL-1.1). The MIT grant does not extend to it.
NOTICE states the EUPL-1.1 grant in full and travels inside the wheel
and the sdist, which is what keeps the schema redistributable. Redistributing
these files, modified or not, means carrying it with them.
Development
uv sync
uv run pytest
uv run pre-commit installuv run pre-commit run --all-files runs the same ruff, ruff-format and mypy
checks CI does. The generated binding under src/europassmcp/_generated/ is
xsdata output and is regenerated, never edited by hand; CI regenerates it and
fails on any diff. scripts/fetch_schema.py re-runs the schema recovery.
Available Tools
12 toolsadd_digital_skillA
Add one digital or computer skill, after those already added.
Add every skill as its own call. Europass prints these as free text, so a single call naming several skills is recorded as one skill with a long name rather than as the list it reads like.
| Name | Required | Description | Default |
|---|---|---|---|
| skill | Yes | ||
| draft_id | Yes | Name of the draft to work on, as given to `create_cv`. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses two meaningful behaviors: the append semantics ('after those already added') and the Europass free-text pitfall. It could mention return values or error cases, but the key side effects are covered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences front-load the core action and then justify the one-per-call rule with a concrete reason. There is no filler, no repetition of the tool name, and every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter append tool, the description plus schema covers required inputs, append behavior, and the main usage trap. An output schema exists, so return format need not be described. Minor omissions like duplicate handling are not essential for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 50%, and the description compensates by clarifying that the skill parameter must be a single skill, not a list. It also reinforces the draft context via 'after those already added'. The draft_id and the optional description field are already adequately documented in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Add'), a clear resource ('digital or computer skill'), and an explicit append position ('after those already added'). It also differentiates from sibling tools like add_language_skill and add_work_experience by narrowing the scope to digital skills.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives a strong operational rule: make one call per skill, because Europass prints the field as free text and a combined call would be treated as a single long skill name. It does not explicitly name alternatives or state when not to use the tool, but the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
add_educationA
Add one qualification or training period, after those already added.
| Name | Required | Description | Default |
|---|---|---|---|
| studies | Yes | ||
| draft_id | Yes | Name of the draft to work on, as given to `create_cv`. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Since no annotations are provided, the description carries the behavioral burden. It explicitly discloses that the operation appends one item after existing entries, rather than replacing or clearing them. It does not mention error behavior or preconditions like draft existence, but the key state-changing behavior is communicated clearly.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. It communicates the core action and the append behavior in a compact and immediately usable form.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a straightforward single-item append operation with a documented schema and an output schema, the description plus input schema is sufficient for correct invocation. It could mention that the target draft must already exist, but the required draft_id parameter and the verb 'add' imply that sufficiently.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 50%, and the description adds no per-parameter detail beyond reinforcing that 'studies' refers to a single qualification/training period. The schema itself documents fields such as title, start_date, and organisation, so the description contributes only marginal semantic value over the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Add') and the resource ('one qualification or training period'), which unambiguously identifies the education domain and distinguishes it from sibling add_* tools like add_work_experience or add_language_skill. The phrase 'after those already added' adds useful ordering context without obscuring the core purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description tells the agent this tool is for appending a single education entry to an existing draft, with the ordering clue 'after those already added.' It does not explicitly name alternatives or when-not-to-use conditions, but the resource type is specific enough to guide tool selection among the siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
add_language_skillA
Add one language the person speaks, with how well they speak it.
Add every language separately, mother tongues included. Look the language
code up with lookup_language if you are not certain of it.
| Name | Required | Description | Default |
|---|---|---|---|
| skill | Yes | ||
| draft_id | Yes | Name of the draft to work on, as given to `create_cv`. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose side effects and constraints. It only says 'Add'—implying mutation—but does not mention whether it modifies the draft, if it is idempotent, if overwriting occurs, or what happens on conflict. There is no note about auth, rate limits, or failure modes, leaving a significant transparency gap for a write operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three compact sentences with no filler. It is front-loaded with the core purpose, then adds the 'separately' rule and a lookup tip. Slight room to improve by mentioning the draft_id parameter, but overall it is efficiently structured and to the point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and an output schema that presumably describes the return, the description covers the main usage rules (single language per call, mother tongue handling, code lookup). However, it omits any behavioral expectations such as result handling, error cases, or safety implications, which are important for a mutating tool. The schema fills parameter semantics well, but the description could be more transparent about side effects.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already gives thorough descriptions for both `draft_id` and the nested `skill` object (including the CEFR level explanation and `mother_tongue` semantics). The description adds the practical hint to look up language codes and emphasizes 'mother tongues included', which is useful but overlaps with the schema's note. It does not decode the nested structure further, so it adds only marginal value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Add one language') and the resource (the person's language skill). It also explicitly notes the one-at-a-time behavior ('Add every language separately') and points to a sibling tool (`lookup_language`) for code resolution, distinguishing it from other add-type siblings like `add_work_experience` or `add_digital_skill`.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives direct usage rules: add each language in its own call, include mother tongues, and verify language codes via `lookup_language`. This effectively tells an agent when to invoke this tool and how to prepare parameters, though it doesn't explicitly mention alternatives; the context is sufficient to select this over sibling add-tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
add_work_experienceA
Add one job to the CV, after the jobs already added.
Add jobs in the order they should be printed, which for a Europass CV is most recent first.
| Name | Required | Description | Default |
|---|---|---|---|
| job | Yes | ||
| draft_id | Yes | Name of the draft to work on, as given to `create_cv`. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It explicitly discloses that the tool appends after existing jobs and preserves the submission order in the printed CV, which is non-obvious and valuable. It does not cover error cases or side effects, but for an append operation this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences with the main verb first and an explanatory second sentence. No fluff or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is a simple append operation; the description plus the rich input schema and output schema cover what an agent needs. The ordering behavior, which is the only non-obvious detail, is explained. No critical information is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds no parameter-specific information; the ordering note does not explain any field. However, the input schema already documents draft_id and the full WorkExperience object with per-field descriptions, so the agent is not left guessing. The description's omission is acceptable, yielding a baseline score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Add'), a concrete resource ('one job to the CV'), and the ordering clause clarifies the operation's place in the document. It is clearly distinct from sibling tools like add_education or add_language_skill.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description instructs the agent to submit jobs in print order (most recent first for Europass), which is a practical usage rule for multiple calls. It does not explicitly name alternative tools or when-not conditions, so the usage is implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_cvA
Start a new, empty CV under a name of your choosing.
Pick a short name you will use for the rest of the conversation, such as the surname of the person the CV is for. A name already in use is refused rather than replaced.
| Name | Required | Description | Default |
|---|---|---|---|
| draft_id | Yes | Name of the draft to work on, as given to `create_cv`. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry behavioral disclosure. It does so by stating that creation is for a new empty CV, that the chosen name persists for the rest of the conversation, and that duplicate names are refused rather than replaced. This is meaningful behavioral information beyond simple creation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded: the core purpose appears in the first sentence, followed only by essential naming and collision behavior. Every sentence earns its place without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter creation tool with an output schema, the description covers everything an agent needs: what the tool does, how to choose the parameter value, how the name is used later, and what happens on a duplicate. No critical guidance is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already describes draft_id as 'Name of the draft to work on, as given to `create_cv`.' The description adds practical meaning: the caller should pick a short, memorable name and use it throughout the conversation. It also clarifies uniqueness expectations by noting that used names are refused.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
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: 'Start a new, empty CV under a name of your choosing.' This clearly distinguishes create_cv from the sibling tools, which populate, validate, or export a CV. The naming guidance reinforces what the tool is for.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes it clear this is the initialization step for a CV lifecycle and that choose a short conversational name identifies the draft going forward. It also tells the agent that reusing an existing name is refused, which prevents accidental overwrite behavior. It does not explicitly compare against alternatives, but the 'start a new, empty' wording provides sufficient context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
export_pdfA
Lay the finished CV out as a PDF, with its Europass XML inside it.
Refuses a draft that would not validate, exactly as export_xml does, and
refuses where this server cannot make PDFs at all; the message says what to
do instead. The XML travels inside the PDF as an attachment, so the document
a reader receives is still the document a machine can read back.
What comes back is a link rather than the file, because a CV is hundreds of kilobytes and would crowd out the rest of this conversation. Give the link to the user, or read the resource it names if you need the bytes yourself.
Refuses a draft whose name cannot be read back out of that link, which is why a draft meant for a PDF wants an ordinary name.
| Name | Required | Description | Default |
|---|---|---|---|
| draft_id | Yes | Name of the draft to work on, as given to `create_cv`. |
TDQS
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 transparently states refusal conditions, the fact that the XML is embedded as an attachment, and why a link is returned instead of the file. It also discloses the naming constraint regarding reading the name back from the link. These are critical behaviors with no contradiction from annotations (none present).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is longer than typical but every sentence adds crucial information: purpose, validation refusals, XML embedding, link response rationale, and naming constraints. It is front-loaded with purpose, and the structure flows logically. Slightly lengthy, but no redundant content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description fully explains what will be returned (a link) and how to use it. It covers all necessary operational aspects: validation, attachment, link handling, and naming. An agent has everything it needs to call this tool correctly and interpret the result.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter (draft_id) is fully described in the schema, but the description adds valuable extra context: the constraint that a draft meant for a PDF should have an ordinary name readable from the link. This goes beyond the schema's 'Name of the draft' and gives the agent deeper insight into parameter validity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a clear and specific action: 'Lay the finished CV out as a PDF, with its Europass XML inside it.' It identifies the resource (finished CV) and the output (PDF with embedded XML). It also distinguishes itself from export_xml by mentioning validation and the XML attachment, making it clear what this tool uniquely does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains refusal conditions (invalid draft, server cannot make PDFs) and instructs the agent on how to handle the result (give the link to the user or read the resource). It contrasts with export_xml by referencing validation behavior, but does not explicitly list alternative tools for different scenarios. Still, the guidance is sufficient for an agent to know when to use this tool and what to do with the response.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
export_xmlA
Write the finished CV as Europass XML.
A draft that would not validate is refused rather than exported, so what
comes back is always a schema-valid Europass document. Call validate_cv
first to find out what is still missing.
| Name | Required | Description | Default |
|---|---|---|---|
| draft_id | Yes | Name of the draft to work on, as given to `create_cv`. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and discloses meaningful behavior: invalid drafts are refused rather than exported, and the output is always a schema-valid Europass document. It does not mention potential side effects or persistence, but the return behavior is described.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short, purposeful sentences: the main action comes first, followed by the critical validation behavior and a helpful pointer. No filler, every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter export tool with an output schema, the description explains the key validation gate and the prerequisite to validate first, making it sufficiently complete for an agent. Slightly more detail on how the XML is delivered or how it differs from export_pdf would add completeness, but output schema covers return shape.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter, draft_id, is fully described in the schema with 100% coverage. The tool description adds no extra parameter meaning beyond the workflow context of validating first, so the baseline for full schema coverage applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description uses the specific verb 'Write' and resource 'finished CV as Europass XML', clearly distinguished from the sibling export_pdf by naming the target format. The validation guarantee further reinforces what the tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly instructs to call validate_cv first to find out what is missing, establishing a clear precondition for use. It implies the tool is for finished, validated drafts, but does not explicitly contrast with export_pdf or state when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_countryA
Find the country codes Europass recognises for a country you can name.
Answers a country in any of the languages the schema documents, so both
Italy and Italien find IT. Each match is a [code, label] pair, the
likeliest first, and a query close to nothing returns nothing.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It discloses multi-language support, return format ([code, label] pairs), ordering (likeliest first), and behavior for near-empty queries. This adds meaningful behavioral context beyond the tool name.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with zero fluff. The primary purpose is front-loaded in the first sentence, and the second sentence adds necessary detail on language support and output shape. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter lookup with an output schema, the description covers language matching, return structure, ordering, and the empty-query edge case. Nothing essential is missing for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, and the description fully compensates by explaining the 'query' parameter as a country name in any language, including matching behavior and output format. This makes the parameter's semantics clear without needing to open the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb+resource: 'Find the country codes Europass recognises for a country you can name.' Clearly distinguishes from sibling CV-building tools by focusing on country code lookup.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The purpose is clear enough that an agent knows when to use it for country code lookups, but the description does not explicitly name alternatives or exclusions. It doesn't compare to lookup_language or other tools, so while context is clear, it lacks explicit routing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_languageA
Find the language codes Europass recognises for a language you can name.
Each match is a [code, label] pair, the likeliest first. The search covers
every language Europass knows; a few of them are not accepted as a mother
tongue, which validation will say.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of explaining behavior. It discloses the output shape ('[code, label] pair'), ordering ('likeliest first'), coverage ('every language Europass knows'), and a caveat about languages not accepted as a mother tongue. This is substantive and goes well beyond a bare lookup description.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured. The first sentence states the core purpose, and the second adds output format, ordering, coverage, and a relevant caveat. Every sentence earns its place without redundancy or padding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter lookup tool with an output schema available, the description is complete enough. It covers what the query means, what the response looks like, how results are ordered, and an important validation caveat. No critical operational detail is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single required parameter 'query' has 0% schema description coverage. The description clarifies that the query is a language name, which provides basic meaning, but it does not add detail on accepted formats, examples, or ambiguity handling. It partially compensates for the empty schema but leaves some semantics to inference.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: find Europass-recognised language codes from a language name. It specifies the verb ('find'), the resource ('language codes Europass recognises'), and the input ('a language you can name'), distinguishing it from sibling lookup_country and search_occupation tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage: call this when you have a language name and need its code, and it notes coverage ('every language Europass knows'). However, it does not explicitly state when not to use it or name alternatives such as add_language_skill or validate_cv, leaving the routing somewhat implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_occupationA
Find the occupation codes for a job you can describe.
These are job titles as the ISCO-88 classification words them, so search for
the profession rather than the person's own job title. Each match is a
[code, label] pair, the likeliest first.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and uses it well. It explains that matches are returned as [code, label] pairs and that results are ordered by likelihood. This gives the agent useful behavioral expectations beyond the raw schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact, front-loaded with the main purpose, and every sentence adds value. The second paragraph provides essential search and output-format details without unnecessary fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter search tool with an output schema, the description covers the key aspects: what to search, how to phrase the search, and what the result format is. No critical information for invoking the tool correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the description fully compensates for the single query parameter. It explains what the query should represent (a job description), how to phrase it (profession-level terms), and what the response pairs look like. This is exemplary parameter guidance.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: finding occupation codes for a described job. It names the specific resource (ISCO-88 occupation codes) and the action (find/search), making it easy to distinguish from siblings like create_cv or lookup_country.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives concrete guidance on how to query: search for the profession as ISCO-88 words it, not the person's own job title. It doesn't explicitly name alternative tools or exclusion conditions, but for a single-query search tool this is sufficient usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
set_personal_infoA
Record who the CV is about, replacing anything set before.
This is the one section a finished CV cannot leave out. Send it again with the full details whenever you learn more; it overwrites rather than merges.
| Name | Required | Description | Default |
|---|---|---|---|
| info | Yes | ||
| draft_id | Yes | Name of the draft to work on, as given to `create_cv`. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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 explicitly states that the tool 'replaces anything set before' and 'overwrites rather than merges,' which is critical non-obvious behavior for an agent to know. It also highlights that this section is mandatory in a finished CV, providing additional context beyond a simple mutation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences, with the core action and overwrite behavior front-loaded in the first sentence. Every phrase earns its place: the scope, the mandatory nature, the update cadence, and the overwrite semantics. There is no filler or redundant restatement of the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no annotations, two parameters (one being a nested object), and an output schema, the description covers the crucial non-obvious facts: the section is required and the operation overwrites rather than merges. The input schema documents field formats and required names, and the output schema exists, so return-value details are unnecessary. Nothing essential is missing for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description does not enumerate parameters or explain their meaning beyond telling the agent to send 'full details.' Schema coverage is 50% at the top level: draft_id is described, while the info parameter relies on the nested PersonalInfo definition, which does contain descriptions for each field. The description adds general guidance about completeness but does not compensate for the missing top-level info parameter description beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb and resource: 'Record who the CV is about, replacing anything set before.' This clearly identifies the tool's function and, combined with the sibling list (add_work_experience, add_education, etc.), unambiguously distinguishes it from tools that modify other CV sections. It also communicates the unique scope of this section.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description says when to use the tool ('Send it again with the full details whenever you learn more') and clarifies that it should always be populated because 'a finished CV cannot leave out' this section. It does not explicitly name alternatives or exclusions, but sibling tool names make those alternatives obvious. The overwrite warning is a useful usage caveat.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_cvA
Check the draft against the Europass schema and report what is wrong.
Safe to call at any point: an unfinished CV is expected to have issues, and each one says where it is and, for a value drawn from a code list, what valid values are spelled most like the one refused.
| Name | Required | Description | Default |
|---|---|---|---|
| draft_id | Yes | Name of the draft to work on, as given to `create_cv`. |
Output Schema
| Name | Required | Description |
|---|---|---|
| valid | Yes | Whether the draft is a valid Europass CV as it stands. |
| issues | No | Everything the schema objects to, in the order it reaches them. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden and exceeds it: it implies read-only checking, reassures about safety, and details the nature of the report (issue location plus close code-list suggestions). This gives the agent a realistic expectation of the tool's behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two tightly written sentences: the first states the core purpose, the second adds safety and output specifics. Every sentence contributes value, and the most important information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool with an output schema, the description plus schema fully covers usage timing, validation behavior, and report content. There are no missing pieces an agent would need to call it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already fully describes draft_id with a pointer to create_cv, providing 100% coverage. The description adds no parameter-specific detail, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('Check the draft against the Europass schema') and outcome ('report what is wrong'), clearly distinguishing this validation tool from the sibling create/modify/export/lookup tools. It leaves no ambiguity about what the tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says the tool is safe to call at any point and that unfinished CVs are expected to have issues, giving the agent clear context on when to invoke it. It does not name alternatives, but no sibling tool offers validation, so no exclusion is necessary.
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.
12 tool updates
v0.1.0- First observed
add_digital_skill - First observed
add_education - First observed
add_language_skill - First observed
add_work_experience - First observed
create_cv - First observed
export_pdf - First observed
export_xml - First observed
lookup_country - First observed
lookup_language - First observed
search_occupation - First observed
set_personal_info - First observed
validate_cv
TDQS
Scored across 12 tools
Every tool targets a clear and separate concern: document creation, a specific CV section, validation/export, or a single code-list lookup. Even the lookup tools are unambiguously separated by resource type, and the add_* tools are distinguished by the section they populate.
All tool names follow a predictable lower_snake_case verb_noun pattern: create_, set_, add_, validate_, export_, lookup_, and search_. The add_* family clearly maps to CV sections, and the lookup_* tools consistently represent code-list lookups.
Twelve tools is well-scoped for a CV-building server: one for document creation, four for content sections, one validator, two exporters, and three code-list lookups. There are no redundant or near-duplicate tools inflating the set.
The core Europass sections and the validation/export pipeline are covered, but the entry lifecycle is incomplete: added work, education, language, and digital skill entries cannot be edited or removed, and there is no clean tool for reading back the current CV state. This creates avoidable dead ends when an agent makes a mistake.
Maintenance
Related MCP Connectors
Maintain your CV with your agent. Review changes, then share one record as web, PDF and open data.
CareerProof MCP gives AI agents direct access to a professional-grade career and workforce intelligence platform. Two namespaces: atlas_* for HR/TA teams (candidate evaluation, batch shortlisting, competency scoring, interview generation, JD analysis, custom eval frameworks, research reports) and ceevee_* for professionals (CV optimization, career positioning, salary intelligence, market reports). Backed by RAG knowledge from 50+ premium research sources (McKinsey, BCG, HBR, Gartner, WEF)
Generate tailored, ATS-optimized resume PDFs and cover letters from a job description, over MCP.
Resume builder with native MCP — create and edit resumes from your AI assistant.
Related MCP Servers
AlicenseAqualityAmaintenanceResume tailoring, cover letter generation, CV PDF export, and job search tools for AI agents. 18 tools powered by the Laddro Career API.18217 npmMIT- FlicenseNot gradedqualityCmaintenanceEnables AI agents to create and manage e-invoices through natural language, supporting EU compliance formats like ZUGFeRD and XRechnung, as well as US plain PDF invoices.7-
- AlicenseNot gradedqualityAmaintenanceMCP server for CVX, enabling AI assistants to create, validate, and build professional CV PDFs from YAML content, with tools for schema retrieval, project initialization, validation, and rendering.322 npm2Apache 2.0
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to create, retrieve, update, delete, and export CVs as PDFs through MCP, sharing documents with the web editor.MIT