france-travail-mcp
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., "@france-travail-mcpFind job offers for a baker in Lyon"
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.
đ«đ· France Travail MCP
Serveur MCP (Model Context Protocol) pour les API officielles de France Travail : offres d'emploi, référentiel des métiers ROME 4.0, prédiction ROMEO, et entreprises qui recrutent (La Bonne Boßte).
An MCP server connecting any AI assistant (Claude, Cursor, VS CodeâŠ) to the official France Travail APIs: real-time job offers, the ROME occupational taxonomy, ROME-code prediction, and hiring-company search.
Branchez votre assistant IA sur le marchĂ© de l'emploi français : il cherche des offres en temps rĂ©el, traduit un mĂ©tier en code ROME, et cible les entreprises qui recrutent â directement dans la conversation.
C'est, à notre connaissance, le premier serveur MCP basé sur les API REST officielles de France Travail (les autres « MCP France Travail » sont des scrapers du site web, fragiles et non officiels).
⥠Installation en 30 secondes
Dans tous les cas, il vous faut des identifiants France Travail (gratuits) â voir Obtenir vos identifiants.
đ±ïž Option A â La plus simple, sans terminal (Claude Desktop)
Téléchargez le fichier
france-travail-mcp.mcpbdepuis la page Releases.Double-cliquez dessus : Claude Desktop l'installe et vous demande votre
Client ID/Client Secretdans un formulaire (le secret est stockĂ© dans le trousseau de votre systĂšme).C'est prĂȘt â aucune Ă©dition de fichier JSON.
âšïž Option B â Une ligne (Claude Code)
claude mcp add france-travail \
-e FT_CLIENT_ID=PAR_xxxxx \
-e FT_CLIENT_SECRET=votre_secret \
-- npx -y france-travail-mcpđ§© Option C â Copier-coller (Claude Desktop, Cursor, VS CodeâŠ)
{
"mcpServers": {
"france-travail": {
"command": "npx",
"args": ["-y", "france-travail-mcp"],
"env": {
"FT_CLIENT_ID": "PAR_xxxxx_xxxxxxxxxxxxxxxxxxxx",
"FT_CLIENT_SECRET": "votre_secret"
}
}
}
}đ Guide complet par client (Cursor, VS Code/Cline, et Ollama 100 % local) â INSTALL.md.
Related MCP server: @kula-ai/mcp-server
đ Obtenir vos identifiants
Créez un compte sur francetravail.io.
Créez une application dans votre espace.
Souscrivez aux API souhaitĂ©es (au minimum Offres d'emploi v2 ; puis ROME 4.0 â MĂ©tiers, ROME 4.0 â Fiches mĂ©tiers, ROMEO 2, La Bonne BoĂźte v2 selon les outils voulus).
Récupérez le Client ID (
PAR_âŠ) et le Client Secret.
Prérequis : Node.js ℠18 (sauf l'option A, qui est autoportée).
𧰠Outils exposés
Outil | Description | API France Travail | Statut |
| Recherche multicritĂšres d'offres (mots-clĂ©s, ROME, gĂ©o, contrat, salaireâŠ) | Offres d'emploi v2 | â testĂ© en live |
| DĂ©tail complet d'une offre | Offres d'emploi v2 | â testĂ© en live |
| RĂ©fĂ©rentiels (communes, types de contratsâŠ) codes â libellĂ©s | Offres d'emploi v2 | â testĂ© en live |
| Trouver un mĂ©tier ROME et son code par texte | ROME 4.0 â MĂ©tiers | â testĂ© en live |
| Fiche d'un mĂ©tier ROME (dĂ©finition, accĂšs) | ROME 4.0 â MĂ©tiers | â testĂ© en live |
| CompĂ©tences & savoirs d'un mĂ©tier | ROME 4.0 â Fiches mĂ©tiers | â testĂ© en live |
| Deviner le code ROME d'un intitulĂ© libre (IA) | ROMEO 2 | â testĂ© en live |
| Entreprises Ă fort potentiel d'embauche | La Bonne BoĂźte v2 | â ïž dĂ©sactivĂ© par dĂ©faut |
La Bonne Boßte est une API à accÚs conditionné : la simple souscription ne suffit pas, France Travail exige une habilitation validée manuellement (sans elle, l'API renvoie
403 Invalid scope). L'outilft_search_entreprisesest donc désactivé par défaut ; une fois l'accÚs accordé, activez-le avec la variable d'environnementFT_ENABLE_LABONNEBOITE=true(son endpoint exact reste à confirmer).Les autres outils s'activent automatiquement dÚs que l'API correspondante est souscrite, sans changement de code.
đ§Ș Exemple â l'agent enchaĂźne les outils tout seul
« Je suis pùtissier et je cherche un CDI vers Lyon. »
ft_predict_rome("pĂątissier")â code ROMED1104
ft_search_offres(codeROME=["D1104"], commune="69381", typeContrat=["CDI"])
ft_search_entreprises(...)pour les candidatures spontanées.
â ïž Paris, Lyon et Marseille s'indiquent par arrondissement (Lyon 1er =
69381, Paris 1er =75101, Marseille 1er =13201) : les codes « globaux »69123/75056/13055sont refusés par l'API (erreur 400). Récupérez les bons codes avecft_list_referentiel.
đ Correspondance outils â scopes OAuth
Chaque API a son propre scope. Le serveur demande un token par scope (mis en cache ~25 min). Pour activer un groupe d'outils, votre application doit avoir souscrit Ă l'API correspondante :
API Ă souscrire | Scope OAuth | Active |
Offres d'emploi v2 |
|
|
ROME 4.0 â MĂ©tiers |
|
|
ROME 4.0 â Fiches mĂ©tiers |
|
|
ROMEO 2 |
|
|
La Bonne BoĂźte v2 |
|
|
đ ïž DĂ©veloppement
git clone https://github.com/jojolabagarre/france-travail-mcp.git
cd france-travail-mcp
npm install # installe les dépendances ET compile (script "prepare")
cp .env.example .env # renseignez FT_CLIENT_ID / FT_CLIENT_SECRET
npm run smoke # test de bout en bout contre l'API réelleCommande | RÎle |
| Compile TypeScript â |
| Vérifie les types ( |
| Test de bout en bout contre l'API réelle |
| Démarre le serveur (transport stdio) |
| GénÚre le bundle |
Stack : TypeScript · @modelcontextprotocol/sdk · zod · axios. Transport stdio.
Architecture : src/services (auth OAuth2 + client HTTP + erreurs), src/schemas, src/tools (un fichier par domaine). Voir CONTRIBUTING.md.
đŠ Publication (mainteneur)
La publication est automatique sur un tag de version (npm puis registre MCP officiel) :
npm version patch # met à jour la version, crée le commit + le tag
git push --follow-tags # déclenche le workflow de publicationVoir .github/workflows/publish-mcp.yml. Secret requis dans le dépÎt : NPM_TOKEN (jeton npm). L'authentification au registre MCP se fait par OIDC (aucun secret supplémentaire).
đ SĂ©curitĂ©
Le fichier
.envn'est jamais committé (voir.gitignore).Les identifiants sont fournis au serveur via les variables d'environnement du client MCP (ou le formulaire sécurisé du bundle
.mcpb).Ne partagez jamais votre
client_secret. En cas de fuite, régénérez-le sur francetravail.io.
đșïž Feuille de route
La Bonne Alternance (offres + formations en alternance)
Marché du travail (statistiques, tensions de recrutement par bassin)
Validation/finalisation de
ft_search_entreprises(La Bonne BoĂźte)Publication npm + registre MCP + bundle
.mcpb
đ€ Contribuer
Les contributions sont bienvenues : ouvrez une issue ou une pull request. Voir CONTRIBUTING.md.
đ Licence & avertissement
Sous licence MIT (voir LICENSE).
Projet non officiel, non affilié à France Travail. Il consomme les API publiques de France Travail ; leur usage est soumis aux conditions d'utilisation de francetravail.io. « France Travail », « ROME » et « La Bonne Boßte » sont des marques de France Travail.
Available Tools
7 toolsft_get_fiche_metierCompétences et savoirs d'un métier ROMEARead-onlyIdempotent
RécupÚre la fiche métier détaillée (format Fiche ROME) pour un code ROME : groupes de compétences (savoir-faire) et groupes de savoirs associés au métier. Utile pour préparer un CV, identifier des compétences à valoriser ou comprendre les attendus d'un métier. Nécessite l'abonnement à l'API « ROME 4.0 - Fiches métiers ».
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Code ROME (ex. 'M1607') | |
| response_format | No | Format de sortie (défaut markdown) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Les annotations indiquent déjà readOnly, openWorld, idempotent. La description ajoute que l'outil nécessite un abonnement à l'API « ROME 4.0 - Fiches métiers », ce qui est une information comportementale utile au-delà des annotations. Pas de contradiction.
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?
La description fait trois phrases concises : fonction principale, cas d'usage, condition d'accĂšs. Chaque phrase apporte une information utile sans redondance.
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?
Pour un outil à 2 paramÚtres sans schéma de sortie, la description est complÚte : elle explique ce que contient la fiche (groupes de compétences et savoirs) et mentionne l'abonnement requis. La structure de la réponse n'est pas décrite, mais l'absence de schéma de sortie rend cela acceptable.
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?
La couverture du schéma est de 100 %, donc le schéma documente déjà les paramÚtres. La description n'ajoute pas de signification supplémentaire au-delà de ce qui est dans le schéma (code ROME, format de sortie).
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?
La description indique clairement que l'outil récupÚre la fiche métier détaillée (Fiche ROME) avec les groupes de compétences et savoirs pour un code ROME. Elle se distingue des outils frÚres (ft_get_metier, ft_get_offre, etc.) par sa spécificité.
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?
La description fournit des contextes d'utilisation concrets: prĂ©paration de CV, identification de compĂ©tences, comprĂ©hension des attendus. Manque toutefois une mention explicite des cas oĂč ne pas l'utiliser ou des alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ft_get_metierFiche d'un métier ROMEARead-onlyIdempotent
RécupÚre la fiche d'un métier ROME 4.0 par son code (5 caractÚres, ex. 'M1607') : libellé, définition, accÚs au métier et arborescence (domaine professionnel, grand domaine). Nécessite l'abonnement à l'API « ROME 4.0 - Métiers ».
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Code ROME (ex. 'M1607') | |
| response_format | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description's disclosure of subscription requirement adds some context beyond annotations. However, it does not elaborate on other behavioral aspects like rate limits or data freshness. No contradictions with annotations.
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 only two sentences: one for the core functionality with example, and one for the prerequisite. No redundant words. Front-loaded with purpose and example. Excellent conciseness.
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 the tool's simplicity (2 parameters, no output schema) and rich annotations, the description covers the key aspects: purpose, code format, subscription requirement. It does not describe the response format parameter, but that is covered by schema enum. Overall, it is sufficiently complete for an agent to use 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?
Schema coverage is 50%: 'code' parameter has a description and pattern, 'response_format' has an enum but no description. The description adds meaning for the 'code' parameter (format example) but does not mention 'response_format' at all. Baseline 3 is appropriate as schema does some work but description could add more.
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 verb 'RécupÚre' (retrieves) and the resource 'fiche d'un métier ROME 4.0 par son code'. It specifies the code format (5 characters, ex. 'M1607') and what is included (libellé, définition, accÚs, arborescence). This is specific and distinguishes the tool from siblings like ft_search_metiers.
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 mentions the prerequisite of subscription to the API. However, it does not provide guidance on when to use this tool versus its sibling 'ft_get_fiche_metier', which appears to have a very similar purpose. No explicit when-not or alternatives are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ft_get_offreDétail d'une offre d'emploiARead-onlyIdempotent
RécupÚre le détail complet d'une offre par son identifiant (champ 'id' renvoyé par ft_search_offres, ex. '209WHZN'). Renvoie l'intitulé, l'entreprise, le lieu, le contrat, le salaire, la description complÚte, les compétences/formations et le lien pour postuler. Erreur 404 si l'identifiant n'existe pas ou si l'offre n'est plus en ligne.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Identifiant de l'offre (ex. '209WHZN') | |
| response_format | No | Format de sortie (défaut markdown) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. Description adds error behavior (404) and return format options, which goes beyond annotations. No contradictions; description complements structured hints.
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, front-loaded with purpose, no fluff. Efficiently conveys function, inputs, outputs, and error conditions. Every sentence adds value.
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, description adequately lists returned fields. Covers error scenario. With annotations providing safety and idempotency, additional details (e.g., rate limits, pagination) are not critical. Completeness is adequate but not exhaustive.
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 100% (both parameters documented). Description adds real-world context (example '209WHZN') and explains purpose of the ID. Does not add new semantics for response_format beyond enum values. Baseline 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?
Description explicitly states it retrieves full details of a job offer by ID, lists returned fields (title, company, location, etc.), and distinguishes from sibling tool ft_search_offres which returns offer lists. Clear verb 'RécupÚre' + resource 'détail complet d'une offre'.
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?
Describes when to use: after obtaining ID from ft_search_offres. Implicitly suggests using ft_search_offres for listing and this tool for details. Mentions error 404 for invalid or expired IDs, providing context for error handling. No explicit alternatives or exclusions, but clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ft_list_referentielLister un rĂ©fĂ©rentiel (codes â libellĂ©s)ARead-onlyIdempotent
Restitue un rĂ©fĂ©rentiel de codes utilisĂ© par la recherche d'offres (codes â libellĂ©s). Indispensable pour traduire un nom en code (ex. trouver le code INSEE d'une commune, ou les codes de types de contrats). Types disponibles : communes, departements, regions, metiers, appellations, themes, domaines, continents, pays, naturesContrats, typesContrats, niveauxFormations, permis, langues, secteursActivites. Astuce : pour 'communes', filtrez vous-mĂȘme par nom dans le rĂ©sultat (la liste est longue).
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Référentiel à récupérer | |
| limit | No | Nombre max d'entrées affichées (défaut 100) | |
| filtre | No | Filtre texte optionnel (insensible à la casse) appliqué sur le libellé, pratique pour les longs référentiels |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds behavioral context beyond annotations: it reveals the tool returns a mapping (codes â libellĂ©s), hints at large result sets for 'communes', and implies the need for client-side filtering. No contradictions; the description enriches the agent's understanding of 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?
The description is extremely concise: four sentences in French with no filler. The first sentence states the core purpose, the second justifies importance, the third lists all types, and the fourth provides a practical tip. Every sentence adds value. 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?
Given the tool has no output schema, the description adequately explains the return type (codes â libellĂ©s) and includes all necessary usage context (available types, tip for long lists). The annotations cover safety and idempotency. A slight gap is the lack of detail on output format or pagination behavior, but the description is sufficient for an agent to use the tool 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?
Schema coverage is 100%, so baseline is 3. The description adds minimal added meaning beyond the schema: it echoes the 'filtre' parameter indirectly by suggesting filtering for 'communes' and mentions the default limit is 100 (not in schema). However, it does not elaborate on the exact semantics or constraints 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 ('Restitue' meaning 'returns') and resource ('référentiel de codes'), clearly stating it lists a reference table of code-to-label mappings for job offers. It explicitly enumerates all 16 available types, making the tool's scope unambiguous. The description distinguishes this from sibling tools (e.g., ft_search_offres, ft_search_metiers) by focusing on static reference data rather than search or prediction.
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 when to use the tool: 'Indispensable pour traduire un nom en code' and provides concrete examples (finding INSEE code of a town, contract type codes). It also offers a practical tip for handling the 'communes' list. While it does not explicitly state when not to use it or name alternatives, the context sufficiently guides the agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ft_predict_romeDeviner le code ROME d'un intitulé (IA)ARead-onlyIdempotent
Utilise ROMEO 2 (modÚle d'IA de France Travail) pour rapprocher un intitulé de poste en texte libre des métiers/appellations ROME les plus probables, avec un score de confiance (0 à 1). C'est le meilleur moyen de convertir « ce que dit la personne » (ex. 'je répare des vélos', 'community manager') en code ROME exploitable par ft_search_offres et ft_search_entreprises.
Renvoie les prédictions triées par score décroissant. Ajustez seuilScore pour ne garder que les prédictions fiables. Nécessite l'abonnement à l'API « ROMEO 2 » sur francetravail.io.
| Name | Required | Description | Default |
|---|---|---|---|
| intitule | Yes | Intitulé/description du poste en texte libre | |
| seuilScore | No | Score minimum de confiance (0-1), ex. 0.5 | |
| nbResultats | No | Nombre de prédictions (défaut 5) | |
| response_format | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool as readOnly, openWorld, idempotent, and non-destructive. The description adds important behavioral context: it returns predictions sorted by score, requires an API subscription ('Nécessite l'abonnement à l'API « ROMEO 2 »'), and allows adjusting thresholds. No contradictions with annotations.
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 concise paragraphs, front-loaded with the verb and resource in the first sentence. Every sentence adds value: purpose, use with siblings, output behavior, threshold guidance, and subscription requirement. 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?
Given no output schema, the description explains the return format (predictions sorted by score). It covers the required subscription, parameter guidance (seuilScore), and the primary use case. It is sufficiently complete for a prediction tool of moderate complexity, though it could mention pagination or error handling.
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 describes 3 of 4 parameters (75% coverage). The description adds usage guidance for seuilScore ('Ajustez ⊠pour ne garder que les prédictions fiables') but does not significantly enhance the semantic meaning of intitule or nbResultats beyond the schema. Baseline 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 starts with a specific verb ('Utilise ROMEO 2 pour rapprocher') and clearly states the resource (intitulé to ROME codes). It distinguishes from siblings by explicitly offering to convert free text into codes usable by ft_search_offres and ft_search_entreprises, which no other sibling 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?
The description gives clear context: 'C'est le meilleur moyen de convertir ⊠en code ROME exploitable par ft_search_offres et ft_search_entreprises.' It also advises adjusting seuilScore for reliability. Although it does not explicitly list when not to use it, the sibling tools are sufficiently different (get_offre, search_metiers) that the main use case is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ft_search_metiersRechercher un métier ROMEARead-onlyIdempotent
Recherche un métier dans le référentiel ROME 4.0 par texte libre et renvoie les codes ROME correspondants (à 5 caractÚres, ex. M1607). Ces codes alimentent ft_search_offres (paramÚtre codeROME) et ft_search_entreprises. La recherche filtre sur le libellé des 532 métiers ROME (insensible à la casse/accents). Pour un rapprochement sémantique plus fin à partir d'un intitulé de poste, préférez ft_predict_rome.
Nécessite que l'application soit abonnée à l'API « ROME 4.0 - Métiers » sur francetravail.io.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Nombre max de résultats (défaut 15) | |
| query | Yes | Terme recherché (ex. 'boulanger', 'développeur', 'infirmier') |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | Yes | |
| metiers | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, non-destructive behavior. The description adds valuable context: the search is case/acent-insensitive, the ROME codes are 5 characters, and the referential contains 532 métiers. This goes beyond annotations but could elaborate on error handling or rate limits.
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 paragraph but logically structured: main purpose, output format, interoperability, search behavior, alternative recommendation, and prerequisite. Each sentence contributes meaning, though it could be slightly more terse without losing clarity.
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 the presence of an output schema (not shown but indicated), the description adequately covers input, behavior, output usage, and alternatives. It provides sufficient context for an AI agent to understand when and how to use the tool effectively.
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 100% with descriptions for both parameters. The description adds value by explaining how the output codes are used in other tools, providing examples for the query parameter, and stating the case-insensitivity behavior. This enhances understanding beyond the schema alone.
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 verb 'recherche' (search), the resource 'métier dans le référentiel ROME 4.0', and the output 'codes ROME correspondants'. It differentiates from the sibling tool ft_predict_rome by noting when to use the alternative for finer semantic matching.
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 states when to use (free text search), when not to (prefer ft_predict_rome for semantic matching), and provides context about how results feed other tools (ft_search_offres, ft_search_entreprises). Also mentions a subscription requirement, which is a necessary prerequisite.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ft_search_offresRechercher des offres d'emploiARead-onlyIdempotent
Recherche multicritÚres dans les offres d'emploi France Travail (temps réel). Renvoie une liste paginée de résumés d'offres + le total de résultats correspondants.
ParamĂštres principaux :
motsCles : mots-clés (ex. 'boulanger', 'développeur web'). CaractÚres autorisés : lettres, chiffres, espace, @#$%^&+./-.
codeROME : 1 Ă 3 codes ROME (5 caractĂšres, ex. ['D1102']). Utilisez ft_predict_rome ou ft_search_metiers pour les trouver.
commune / departement / region : codes INSEE (commune = 5 chiffres). RĂ©cupĂ©rables via ft_list_referentiel. â Paris, Lyon et Marseille s'indiquent par ARRONDISSEMENT (ex. Lyon 1er = 69381, Paris 1er = 75101, Marseille 1er = 13201) : les codes « globaux » 69123 / 75056 / 13055 sont rejetĂ©s (400).
distance : rayon en km autour de la commune (défaut 10 ; 0 = uniquement la commune).
typeContrat : codes (ex. ['CDI','CDD','MIS']) â voir ft_list_referentiel typesContrats.
experience : '1' (<1 an), '2' (1-3 ans), '3' (>3 ans).
qualification : '0' (non cadre), '9' (cadre).
tempsPlein : true/false.
salaireMin + periodeSalaire (M=mensuel, A=annuel, H=horaire, C=autre) : obligatoires ENSEMBLE.
publieeDepuis : 1, 3, 7, 14 ou 31 jours.
sort : '0' pertinence (défaut), '1' date, '2' distance.
offset (dĂ©faut 0) / limit (dĂ©faut 15, max 150) : pagination. Profondeur max â 1150 rĂ©sultats ; au-delĂ , affinez.
Exemples : « offres de boulanger en CDI Ă Lyon » â motsCles='boulanger', commune='69381' (Lyon 1er), typeContrat=['CDI']. « dĂ©veloppeurs publiĂ©s cette semaine » â motsCles='dĂ©veloppeur', publieeDepuis='7'.
Erreurs : 400 = paramÚtre/format invalide (vérifiez les codes) ; 403 = API non souscrite.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | 0: pertinence, 1: date, 2: distance | |
| limit | No | Nombre d'offres (défaut 15, max 150) | |
| offset | No | Index de départ (pagination) | |
| region | No | Code région INSEE | |
| commune | No | Code commune INSEE (5 chiffres). Paris/Lyon/Marseille : utiliser le code d'ARRONDISSEMENT (ex. 69381), pas le code global 69123/75056/13055. | |
| codeROME | No | Codes ROME (ex. ['D1102']) | |
| distance | No | Rayon en km (défaut 10, 0 = commune seule) | |
| motsCles | No | Mots-clés de recherche | |
| experience | No | 1:<1an, 2:1-3ans, 3:>3ans | |
| salaireMin | No | Salaire minimum (requiert periodeSalaire) | |
| tempsPlein | No | true = temps plein, false = temps partiel | |
| departement | No | Code département INSEE | |
| typeContrat | No | Codes type de contrat (CDI, CDD, MISâŠ) | |
| natureContrat | No | Codes nature de contrat | |
| publieeDepuis | No | Publiée depuis N jours | |
| qualification | No | 0: non cadre, 9: cadre | |
| periodeSalaire | No | Période du salaire (requiert salaireMin) | |
| response_format | No | Format du texte (défaut markdown) |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | Yes | |
| total | Yes | |
| offres | Yes | |
| offset | Yes | |
| has_more | Yes | |
| next_offset | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses key behaviors such as real-time search, pagination details, maximum result depth, and error codes (400, 403). It also explains special cases for Paris/Lyon/Marseille commune codes. Annotations already indicate readOnlyHint=true and idempotentHint=true, and the description consistently portrays a safe, read-only operation. While it covers many aspects, it does not mention rate limits or data freshness beyond 'temps réel', which prevents a top score.
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 well-structured with a clear purpose sentence, a bulleted parameter list, examples, and error information. However, it is somewhat verbose; some parameter details are repeated (e.g., commune code explanation appears both in the bullet and later). The front-loading of purpose is good, but conciseness could be improved.
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 the tool's complexity (18 parameters, zero required, multiple interdependent filters) and the presence of an output schema, the description covers all necessary aspects: what it returns (paginated summaries with total), pagination, error handling, and examples. The description is fully sufficient for an AI agent to invoke the tool 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 input schema already has 100% coverage with descriptions for all 18 parameters. The description adds significant value by grouping parameters, explaining constraints (e.g., allowed characters for motsCles, co-dependency of salaireMin and periodeSalaire), and clarifying edge cases (e.g., arrondissement codes for Lyon). Examples further illustrate parameter usage.
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 'Recherche multicritÚres dans les offres d'emploi France Travail (temps réel). Renvoie une liste paginée de résumés d'offres + le total de résultats correspondants.' This verb+resource combination precisely defines the tool's function, and it distinguishes from sibling tools like ft_get_offre (single offer retrieval) and ft_search_metiers (job type search).
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 provides excellent guidance on when to use the tool, including examples, pagination limits (max 1150 results), and references to sibling tools for auxiliary lookups (e.g., ft_predict_rome for ROME codes, ft_list_referentiel for geographic codes). However, it does not explicitly state when not to use this tool versus alternatives like ft_get_offre, missing a clear exclusion statement.
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.
7 tool updates
v0.1.1- First observed
ft_get_fiche_metier - First observed
ft_get_metier - First observed
ft_get_offre - First observed
ft_list_referentiel - First observed
ft_predict_rome - First observed
ft_search_metiers - First observed
ft_search_offres
TDQS
Scored across 7 tools
Each tool has a distinct purpose, but some slight overlap exists between ft_predict_rome and ft_search_metiers (both find ROME codes from text) and between ft_get_metier and ft_get_fiche_metier (both retrieve info for a ROME code at different depths). Descriptions clearly differentiate them, so ambiguity is minimal.
All tools follow a consistent 'ft_verb_noun' pattern in snake_case, using verbs like get, list, predict, search. Naming is predictable and logical, making it easy for an agent to understand the action and resource.
With 7 tools, the set is well-scoped for the domain of French job market data. Each tool covers a distinct need (searching, details, prediction, reference) without being overwhelming or sparse.
The tool set covers core workflows: searching jobs, getting offer details, retrieving job code info, converting text to codes, and listing reference data. A minor gap is the absence of a company search tool (referenced in descriptions but not implemented), but the set is largely complete for its stated purpose.
Maintenance
Related MCP Connectors
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
Public MCP server for discovering open jobs. Search, filter, and get application links.
- ZapierOAuthcom.zapier
Hosted MCP server connecting AI assistants to 9,000+ apps and 40,000+ actions via Zapier.
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for Recruit CRM, enabling AI assistants to search candidates, view jobs, and manage recruiting workflows.53MIT

@kula-ai/mcp-serverofficial
AlicenseAqualityCmaintenanceMCP server enabling AI assistants to connect to Kula recruiting API for managing jobs, candidates, applications, webhooks, and more.8466 npmMIT- FlicenseNot gradedqualityDmaintenanceAn MCP server integrating with the BoondManager API to enable AI assistants to search, retrieve, create, and update records across 94 tools in 8 business domains.-
- AlicenseNot gradedqualityDmaintenanceMCP server that exposes French public APIs (Data Inclusion, Légifrance, La Bonne Alternance) as tools for LLMs, enabling social, legal, and employment assistance.4MIT