AI Tools
Intelligently extract key points from articles and generate high-quality summaries. Support multiple styles and lengths for academic papers, news, reports, and various text types
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/text-summarizer' \
-H 'Content-Type: application/json' \
-d '{"text":"Please enter the text you want to summarize...","summaryLength":"medium","summaryStyle":"paragraphs","language":"en","extractKeywords":"yes","includeAnalysis":"no"}'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-summarizer| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | Support articles, documents, reports, papers, news, and any text content. For best results, please ensure the text is complete and coherent. |
| summaryLength | select | No | — |
| summaryStyle | select | No | — |
| language | select | No | — |
| extractKeywords | select | 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-text-summarizer": {
"name": "text-summarizer",
"description": "Intelligently extract key points from articles and generate high-quality summaries. Support multiple styles and lengths for academic papers, news, reports, and various text types",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=text-summarizer",
"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-summarizer",
"arguments": {
"text": "Please enter the text you want to summarize...",
"summaryLength": "medium",
"summaryStyle": "paragraphs",
"language": "en",
"extractKeywords": "yes",
"includeAnalysis": "no"
}
}
}Questions or issues? Contact [email protected]
| — |
| includeAnalysis | select | No | — |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}