Text Processing
Transforme l anglais en IPA pédagogique US/UK avec phonèmes colorés, repères articulatoires et paires minimales.
Appelez cet outil depuis votre code en trois langages.
curl -X POST 'https://api.elysiatools.com/fr/api/tools/ipa-phonetic-transcription-and-pronunciation-coach' \
-H 'Content-Type: application/json' \
-d '{"text":"water tomato bath","accent":"both","showMinimalPairs":true,"showArticulation":true}'Envoyez une requête POST avec vos entrées en JSON. Les paramètres de type fichier nécessitent un upload préalable.
POST https://api.elysiatools.com/fr/api/tools/ipa-phonetic-transcription-and-pronunciation-coach| Nom | Type | Requis | Description |
|---|---|---|---|
| text | textarea | Oui | — |
| accent | select | Non | — |
| showMinimalPairs | checkbox | Non | — |
| showArticulation | checkbox | Non | — |
Résultat HTML
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Ajoutez cet outil à votre serveur Model Context Protocol pour que les agents IA puissent le lister et l'appeler.
Ajoutez ce bloc à la configuration de votre client MCP :
{
"mcpServers": {
"elysiatools-ipa-phonetic-transcription-and-pronunciation-coach": {
"name": "ipa-phonetic-transcription-and-pronunciation-coach",
"description": "Transforme l anglais en IPA pédagogique US/UK avec phonèmes colorés, repères articulatoires et paires minimales.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ipa-phonetic-transcription-and-pronunciation-coach",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Après connexion au point d'accès SSE, listez les outils exposés :
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Appelez l'outil par son id ; les arguments sont construits à partir de ses paramètres :
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "ipa-phonetic-transcription-and-pronunciation-coach",
"arguments": {
"text": "water tomato bath",
"accent": "both",
"showMinimalPairs": true,
"showArticulation": true
}
}
}Des questions ou un problème ? Contactez [email protected]