Text Processing
Normalize paragraph formatting with proper spacing, punctuation, and structure
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/paragraph-formatter' \
-H 'Content-Type: application/json' \
-d '{"textInput":"Enter your text here to format paragraphs...","removeExtraSpaces":true,"fixPunctuation":true,"normalizeQuotes":false,"fixCase":false,"addLineBreaks":false,"removeEmptyLines":true,"maxWidth":0,"indentFirstLine":false,"hangingIndent":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/paragraph-formatter| Name | Type | Required | Description |
|---|---|---|---|
| textInput | textarea | Yes | — |
| removeExtraSpaces | checkbox | No | Remove multiple consecutive spaces between words |
| fixPunctuation | checkbox | No | Fix spacing before punctuation marks (periods, commas, etc.) |
| normalizeQuotes | checkbox | No | Replace various quote characters with standard quotes |
| fixCase | 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-paragraph-formatter": {
"name": "paragraph-formatter",
"description": "Normalize paragraph formatting with proper spacing, punctuation, and structure",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=paragraph-formatter",
"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": "paragraph-formatter",
"arguments": {
"textInput": "Enter your text here to format paragraphs...",
"removeExtraSpaces": true,
"fixPunctuation": true,
"normalizeQuotes": false,
"fixCase": false,
"addLineBreaks": false,
"removeEmptyLines": true,
"maxWidth": 0,
"indentFirstLine": false,
"hangingIndent": false
}
}
}Questions or issues? Contact [email protected]
| Capitalize the first letter of each paragraph |
| addLineBreaks | checkbox | No | Add extra line breaks after paragraphs |
| removeEmptyLines | checkbox | No | Remove excessive empty lines between paragraphs |
| maxWidth | number | No | — |
| indentFirstLine | checkbox | No | Add indentation to the first line of text |
| hangingIndent | checkbox | No | Add hanging indent to subsequent paragraphs |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}