Tone Analyzer

Text REST API MCP

Analyze the emotional tone of English text with a rule-based word dictionary and return tone scores (joy, sadness, anger, fear, confidence, analytical, tentative, polite), the dominant tone, an overall sentiment with a 0-100 score, and a formality level. Needs at least 5 words. No AI model involved.

This page documents the HTTP endpoint POST /api/tools/tone-analyzer/execute. See the MCP reference →

Call it over REST

POST https://api.findutils.com/api/tools/tone-analyzer/execute · no API keys · 60 requests/min per IP

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/tone-analyzer/execute \
  -H "Content-Type: application/json" \
  -d '{
    "text": "I am so happy and excited about this wonderful news!"
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/tone-analyzer

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
text string yes The text to analyse (at least 5 words).

Example arguments (verified)

{
  "text": "I am so happy and excited about this wonderful news!"
}

Also an MCP tool

Claude, Cursor, and any MCP client can call this tool as findutils:tone_analyzer after one connect command.

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Tone Analyzer →

More Text tools