Text Processing
Remove HTML tags and extract clean text content
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/html-tag-stripper' \
-H 'Content-Type: application/json' \
-d '{"html":"Enter HTML content to clean (can include tags, entities, etc.)...","preserveWhitespace":false,"preserveLineBreaks":true,"decodeEntities":true,"removeScriptStyle":true,"customKeepTags":"e.g., br,p,strong (comma-separated)"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/html-tag-stripper| Name | Type | Required | Description |
|---|---|---|---|
| html | textarea | Yes | — |
| preserveWhitespace | checkbox | No | Keep multiple spaces and formatting |
| preserveLineBreaks | checkbox | No | Keep paragraph and line break structure |
| decodeEntities | checkbox | No | Convert & < > etc. to their characters |
| removeScriptStyle | checkbox | No |
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-html-tag-stripper": {
"name": "html-tag-stripper",
"description": "Remove HTML tags and extract clean text content",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=html-tag-stripper",
"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": "html-tag-stripper",
"arguments": {
"html": "Enter HTML content to clean (can include tags, entities, etc.)...",
"preserveWhitespace": false,
"preserveLineBreaks": true,
"decodeEntities": true,
"removeScriptStyle": true,
"customKeepTags": "e.g., br,p,strong (comma-separated)"
}
}
}Questions or issues? Contact [email protected]
| Completely remove JavaScript and CSS content |
| customKeepTags | text | No | Tags to preserve (comma-separated tag names) |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}