Text Processing
Vérifie nombres, dates, unités, guillemets, tirets, niveaux de titre et noms propres ; produit une feuille de style
Appelez cet outil depuis votre code en trois langages.
curl -X POST 'https://api.elysiatools.com/fr/api/tools/manuscript-style-consistency-auditor' \
-H 'Content-Type: application/json' \
-d '{"text":"# Title\n\n### Skipped H2\n\nShe said \"hello\" and “goodbye”.\nThe train-- departed.","numberStyle":"smart","quoteStyle":"curly","dashStyle":"em","headings":true,"nouns":"","useAI":false}'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/manuscript-style-consistency-auditor| Nom | Type | Requis | Description |
|---|---|---|---|
| text | textarea | Oui | — |
| numberStyle | select | Non | — |
| quoteStyle | select | Non | — |
| dashStyle | select | Non | — |
| headings | checkbox | Non | — |
| nouns |
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-manuscript-style-consistency-auditor": {
"name": "manuscript-style-consistency-auditor",
"description": "Vérifie nombres, dates, unités, guillemets, tirets, niveaux de titre et noms propres ; produit une feuille de style",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=manuscript-style-consistency-auditor",
"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": "manuscript-style-consistency-auditor",
"arguments": {
"text": "# Title\n\n### Skipped H2\n\nShe said \"hello\" and “goodbye”.\nThe train-- departed.",
"numberStyle": "smart",
"quoteStyle": "curly",
"dashStyle": "em",
"headings": true,
"nouns": "",
"useAI": false
}
}
}| textarea |
| Non |
| — |
| useAI | checkbox | Non | — |
Résultat HTML
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Des questions ou un problème ? Contactez [email protected]