Text Processing
Quickly return words in text that match a pattern or a regex
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/text-word-filter' \
-H 'Content-Type: application/json' \
-d '{"textInput":"Enter text to filter words from...","filterType":"contains","pattern":"Enter pattern, text, or regex...","wordBoundary":true,"caseSensitive":false,"outputFormat":"space","separator":"Enter custom separator...","removeDuplicates":false,"sortAlphabetically":false,"maxLength":"Maximum word length...","maxVowels":"Maximum vowel count...","maxConsonants":"Maximum consonant count..."}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/text-word-filter| Name | Type | Required | Description |
|---|---|---|---|
| textInput | textarea | Yes | — |
| filterType | select | Yes | — |
| pattern | text | No | The pattern to match against (required for most filter types) |
| wordBoundary | checkbox | No | Match whole words only |
| caseSensitive | checkbox | No | Match case when filtering |
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-text-word-filter": {
"name": "text-word-filter",
"description": "Quickly return words in text that match a pattern or a regex",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=text-word-filter",
"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": "text-word-filter",
"arguments": {
"textInput": "Enter text to filter words from...",
"filterType": "contains",
"pattern": "Enter pattern, text, or regex...",
"wordBoundary": true,
"caseSensitive": false,
"outputFormat": "space",
"separator": "Enter custom separator...",
"removeDuplicates": false,
"sortAlphabetically": false,
"maxLength": "Maximum word length...",
"maxVowels": "Maximum vowel count...",
"maxConsonants": "Maximum consonant count..."
}
}
}| outputFormat | select | Yes | — |
| separator | text | No | Custom separator between words (overrides output format) |
| removeDuplicates | checkbox | No | Remove duplicate words from results |
| sortAlphabetically | checkbox | No | Sort results alphabetically |
| maxLength | text | No | Maximum word length (for length filter type) |
| maxVowels | text | No | Maximum number of vowels (for vowel filter type) |
| maxConsonants | text | No | Maximum number of consonants (for consonant filter type) |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]