AI Tools
Study public Reddit discussions around a topic with multilingual query expansion, evidence-aware synthesis, themes, sentiment, and a cautious conclusion.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/reddit-search-research' \
-H 'Content-Type: application/json' \
-d '{"topic":"How developers feel about AI coding assistants","outputLanguage":"en","timeRange":"month","sort":"relevance","maxQueries":4,"resultsPerQuery":8,"includeComments":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/reddit-search-research| Name | Type | Required | Description |
|---|---|---|---|
| topic | textarea | Yes | — |
| outputLanguage | select | No | — |
| timeRange | select | No | — |
| sort | select | No | — |
| maxQueries | number | No | — |
| resultsPerQuery |
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-reddit-search-research": {
"name": "reddit-search-research",
"description": "Study public Reddit discussions around a topic with multilingual query expansion, evidence-aware synthesis, themes, sentiment, and a cautious conclusion.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=reddit-search-research",
"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": "reddit-search-research",
"arguments": {
"topic": "How developers feel about AI coding assistants",
"outputLanguage": "en",
"timeRange": "month",
"sort": "relevance",
"maxQueries": 4,
"resultsPerQuery": 8,
"includeComments": false
}
}
}Questions or issues? Contact [email protected]
| number |
| No |
| — |
| includeComments | checkbox | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}