plugins marketplace
← All plugins

francetravail

v1.0.0

Real-time French job-market data from the official France Travail API — search jobs with structured salary/skills/ROME, get market aggregations, and look up official occupation codes. No scraping.

Claude Code1 skill1 MCP serverstdio

by Mohamed Amine Ben MallessaMIT0updated 1 month ago

Source

git clone https://github.com/mohamed-amine-ben-mallessa/francetravail-mcp

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

francetravail/
├── .claude-plugin/plugin.json
├── skills/francetravail/SKILL.md
└── .mcp.json

Skills1

francetravailskills/francetravail/SKILL.md

Search official French job offers (France Travail / ex-Pôle Emploi) and the ROME occupation reference via the francetravail MCP server. Use whenever the user looks for jobs in France, wants the French job market for a role/area, needs an occupation's official code or skills, or wants structured offer data (salary, contract, company, application link). Keywords: job, emploi, France Travail, Pôle Emploi, offre, ROME, métier, CDI, CDD, alternance, marché de l'emploi, French jobs, recruitment France.

MCP servers1

francetravailstdio
command
python
args
${CLAUDE_PLUGIN_ROOT}/server.py
env.FT_CLIENT_ID
${FT_CLIENT_ID}
env.FT_CLIENT_SECRET
${FT_CLIENT_SECRET}
env.PYTHONIOENCODING
utf-8

MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.

Manifests1

.claude-plugin/plugin.json
{
  "name": "francetravail",
  "description": "Real-time French job-market data from the official France Travail API — search jobs with structured salary/skills/ROME, get market aggregations, and look up official occupation codes. No scraping.",
  "version": "1.0.0",
  "author": {
    "name": "Mohamed Amine Ben Mallessa"
  },
  "license": "MIT",
  "keywords": [
    "france-travail",
    "jobs",
    "emploi",
    "rome",
    "france",
    "recruitment",
    "mcp"
  ],
  "mcpServers": {
    "francetravail": {
      "command": "python",
      "args": [
        "${CLAUDE_PLUGIN_ROOT}/server.py"
      ],
      "env": {
        "FT_CLIENT_ID": "${FT_CLIENT_ID}",
        "FT_CLIENT_SECRET": "${FT_CLIENT_SECRET}",
        "PYTHONIOENCODING": "utf-8"
      }
    }
  }
}