Text Processing
Audit a document against a glossary/forbidden list for variants, case, abbreviation first-use, and optional AI contextual misuse
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/terminology-glossary-consistency-auditor' \
-H 'Content-Type: application/json' \
-d '{"text":"We will utilize the new API shortly.\nThe API is ready for utilize too.","glossary":"","forbidden":"utilize","pairs":"API=Application Programming Interface","checkAbbreviations":true,"useAI":false}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/terminology-glossary-consistency-auditor| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | — |
| glossary | textarea | No | — |
| forbidden | textarea | No | — |
| pairs | text | No | — |
| checkAbbreviations | checkbox | No | — |
| useAI |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-terminology-glossary-consistency-auditor": {
"name": "terminology-glossary-consistency-auditor",
"description": "Audit a document against a glossary/forbidden list for variants, case, abbreviation first-use, and optional AI contextual misuse",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=terminology-glossary-consistency-auditor",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "terminology-glossary-consistency-auditor",
"arguments": {
"text": "We will utilize the new API shortly.\nThe API is ready for utilize too.",
"glossary": "",
"forbidden": "utilize",
"pairs": "API=Application Programming Interface",
"checkAbbreviations": true,
"useAI": false
}
}
}| checkbox |
| No |
| — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]