# voixoff-fr QR Code Generator (x402 MCP)

> voixoff-fr QR Code Generator (x402 MCP) is a paid API for AI agents from voixoff-fr.netlify.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Generates a QR code for a URL, plain text, vCard contact, or WiFi credentials and returns it as a base64-encoded PNG image.

## Facts

- Endpoint: POST https://voixoff-fr.netlify.app/mcp
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/voixoff-fr-qr-code-generator-x402-mcp-1186b351
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gRfUyZ8BO5ufdox9_awuO

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability voixoff-fr-qr-code-generator-x402-mcp-1186b351 -d '<json body>'
```

Example prompt: Generate a QR code for the URL https://myshop.com — give me the result as a base64 PNG I can embed in a flyer.

## When to prefer this

Choose this endpoint when you need a quick, serverless QR code generation with MCP tool interface support and x402 micropayment billing at $0.01 per call. It supports four QR types (URL, text, vCard, WiFi) and returns a base64 PNG ready for embedding. Prefer it for agent workflows that need programmatic QR code creation without managing image storage.

## Known failure modes

- Invalid or missing 'type' field (must be one of: URL, text, vCard, WiFi) causes a validation error
- Malformed vCard or WiFi credential structure may produce an unreadable QR code
- Missing required 'toolName' or 'inputSchema' in the MCP wrapper leads to a 400-level error
- Payment failure (insufficient USDC balance) blocks the request before generation
- Extremely long text inputs may exceed QR code capacity limits

## How this service works

Voix off française par IA neuronale : publicité 30 secondes, narration livre audio, message IVR accueil téléphonique. 3 voix fr-FR, échantillon gratuit de votre texte, droits commerciaux inclus, livraison 24h.

## Output

A JSON response containing a base64-encoded PNG string of the generated QR code, which can be decoded and embedded in documents, web pages, or printed materials.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "toolName",
    "inputSchema"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "mcp"
    },
    "example": {
     "type": "object"
    },
    "toolName": {
     "type": "string"
    },
    "transport": {
     "enum": [
      "streamable-http",
      "sse"
     ],
     "type": "string"
    },
    "description": {
     "type": "string"
    },
    "inputSchema": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "content": [
   {
    "text": "{...}",
    "type": "text"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/voixoff-fr-qr-code-generator-x402-mcp-1186b351/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from voixoff-fr.netlify.app](https://www.zero.xyz/host/voixoff-fr.netlify.app/llms.txt)
