Serveur MCP · En ligne

iQuesta Model Context Protocol

Adaptateur entre les agents IA et l'API iQuesta. Expose les offres de stage et alternance aux modèles Claude, ChatGPT et Gemini via le protocole JSON-RPC MCP.

Endpoint POST /api/mcp
Protocole MCP 2024-11-05
Stack Laravel 10 · PHP 8.1
Statut du serveur
Serveur MCP
Vérification…
Protocole
Tools disponibles
Dernière vérification
Tools MCP exposés
Chargement des tools…
Recherche d'offres
Documentation API

Handshake MCP — à appeler en premier pour initialiser la connexion.

curl -X POST https://mcp.iquesta.com/api/mcp \ -H "Content-Type: application/json" \ -d '{ "jsonrpc": "2.0", "id": 1, "method": "initialize", "params": {} }'

Liste tous les tools disponibles avec leur schéma JSON.

curl -X POST https://mcp.iquesta.com/api/mcp \ -H "Content-Type: application/json" \ -d '{ "jsonrpc": "2.0", "id": 2, "method": "tools/list", "params": {} }'

Récupère le détail complet d'une offre par son identifiant.

curl -X POST https://mcp.iquesta.com/api/mcp \ -H "Content-Type: application/json" \ -d '{ "jsonrpc": "2.0", "id": 4, "method": "tools/call", "params": { "name": "get_job", "arguments": { "job_id": "abc123" } } }'
Codes d'erreur JSON-RPC
-32700 Parse error Payload JSON invalide ou absent
-32601 Method not found Méthode JSON-RPC inconnue
-32602 Invalid params Paramètre manquant ou type incorrect
-32603 Internal error Erreur interne (ex : API iQuesta inaccessible)