# Thesis Statement Generator — MCP tool `findutils:thesis_statement_generator`

Generate up to 5 thesis statement variations from a topic, a position, and optional supporting reasons for four essay types, and return each statement with a strength rating (weak, moderate, strong) and improvement tips. Output comes from deterministic templates.

- Category: education
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/thesis-statement-generator/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/mcp/thesis-statement-generator/
- Same tool on the other surface: https://findutils.com/api/thesis-statement-generator/

## Connect

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Claude Desktop (`claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}
```

## Call the tool (verified example)

```bash
curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "thesis_statement_generator",
      "arguments": {
        "topic": "Social media",
        "position": "Harms teenage attention spans",
        "reasons": [
          "constant notifications",
          "infinite scrolling"
        ]
      }
    }
  }'
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `topic` | string | yes | The essay topic, e.g. "Social media". |
| `position` | string | yes | Your claim or position, e.g. "Harms teenage mental health". |
| `reasons` | array | no | Up to 3 supporting reasons. More reasons produce stronger statements. |
| `essay_type` | string (argumentative \| analytical \| expository \| compare_contrast) | no | Essay type. Default "argumentative". Default: `"argumentative"`. |

Example arguments (verified):

```json
{
  "topic": "Social media",
  "position": "Harms teenage attention spans",
  "reasons": [
    "constant notifications",
    "infinite scrolling"
  ]
}
```

## Also a REST endpoint

```bash
curl -X POST https://api.findutils.com/api/tools/thesis-statement-generator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "topic": "Social media",
    "position": "Harms teenage attention spans",
    "reasons": [
      "constant notifications",
      "infinite scrolling"
    ]
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/thesis-statement-generator
```

Full REST reference: https://findutils.com/api/thesis-statement-generator/ · OpenAPI 3.1 spec: https://findutils.com/api/openapi.json

---
Full catalog: POST https://mcp.findutils.com/ with method `tools/list` · https://findutils.com/mcp/ · https://findutils.com/llms.txt
