PluginBench
MCP Server

io.github.CedricKouma/facturx-toolkit MCP Server

io.github.CedricKouma/facturx-toolkit

What is the io.github.CedricKouma/facturx-toolkit MCP server?

Validate, extract, repair and generate French Factur-X / EN16931 invoices via AgentForge API

How to install io.github.CedricKouma/facturx-toolkit

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • AGENTFORGE_BASE_URL

    AgentForge APIM gateway base URL

  • AGENTFORGE_API_KEY
    required
    secret

    APIM subscription key (Ocp-Apim-Subscription-Key / x-api-key)

  • Ocp-Apim-Subscription-Key
    required
    secret

    APIM subscription key (free tier works for smoke tests)

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "facturx-toolkit": {
      "command": "npx",
      "args": [
        "-y",
        "agentforge-facturx-mcp"
      ],
      "env": {
        "AGENTFORGE_BASE_URL": "<YOUR_AGENTFORGE_BASE_URL>",
        "AGENTFORGE_API_KEY": "<YOUR_AGENTFORGE_API_KEY>",
        "Ocp-Apim-Subscription-Key": "<YOUR_OCP_APIM_SUBSCRIPTION_KEY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "facturx-toolkit": {
      "command": "npx",
      "args": [
        "-y",
        "agentforge-facturx-mcp"
      ],
      "env": {
        "AGENTFORGE_BASE_URL": "<YOUR_AGENTFORGE_BASE_URL>",
        "AGENTFORGE_API_KEY": "<YOUR_AGENTFORGE_API_KEY>",
        "Ocp-Apim-Subscription-Key": "<YOUR_OCP_APIM_SUBSCRIPTION_KEY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "facturx-toolkit": {
      "command": "npx",
      "args": [
        "-y",
        "agentforge-facturx-mcp"
      ],
      "env": {
        "AGENTFORGE_BASE_URL": "<YOUR_AGENTFORGE_BASE_URL>",
        "AGENTFORGE_API_KEY": "<YOUR_AGENTFORGE_API_KEY>",
        "Ocp-Apim-Subscription-Key": "<YOUR_OCP_APIM_SUBSCRIPTION_KEY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "facturx-toolkit": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agentforge-facturx-mcp"
      ],
      "env": {
        "AGENTFORGE_BASE_URL": "<YOUR_AGENTFORGE_BASE_URL>",
        "AGENTFORGE_API_KEY": "<YOUR_AGENTFORGE_API_KEY>",
        "Ocp-Apim-Subscription-Key": "<YOUR_OCP_APIM_SUBSCRIPTION_KEY>"
      }
    }
  }
}
Claude Code
claude mcp add facturx-toolkit --env AGENTFORGE_BASE_URL=<YOUR_AGENTFORGE_BASE_URL> --env AGENTFORGE_API_KEY=<YOUR_AGENTFORGE_API_KEY> --env Ocp-Apim-Subscription-Key=<YOUR_OCP_APIM_SUBSCRIPTION_KEY> -- npx -y agentforge-facturx-mcp

Related MCP servers

MCP server (stdio): fetch web pages as clean readable markdown via the AgentForge API

MCP server (stdio): repair broken/malformed JSON via the AgentForge API

MCP server (stdio): lint OpenAPI specs with Spectral via the AgentForge API

MCP server (stdio): validate JSON against JSON Schema (draft-07 / 2020-12) via the AgentForge API

MCP server (stdio): check if URLs are alive (status, redirects, latency) via the AgentForge API