Utilities
Find synonyms and antonyms for words with AI-powered analysis
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/synonym-antonym-finder' \
-H 'Content-Type: application/json' \
-d '{"word":"Enter a single word to find synonyms and/or antonyms...","searchType":"both","context":"Provide a sentence or context where you plan to use the word (helps find more appropriate suggestions)...","difficultyLevel":"intermediate","language":"en","includeDefinitions":true}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/synonym-antonym-finder| Name | Type | Required | Description |
|---|---|---|---|
| word | text | Yes | — |
| searchType | select | No | — |
| context | textarea | No | — |
| difficultyLevel | select | No | — |
| language | select | No | — |
| includeDefinitions |
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-synonym-antonym-finder": {
"name": "synonym-antonym-finder",
"description": "Find synonyms and antonyms for words with AI-powered analysis",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=synonym-antonym-finder",
"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": "synonym-antonym-finder",
"arguments": {
"word": "Enter a single word to find synonyms and/or antonyms...",
"searchType": "both",
"context": "Provide a sentence or context where you plan to use the word (helps find more appropriate suggestions)...",
"difficultyLevel": "intermediate",
"language": "en",
"includeDefinitions": true
}
}
}Questions or issues? Contact [email protected]
| checkbox |
| No |
| — |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}