Research Title Generator

Education REST API MCP

Generate up to 20 academic research paper titles from a topic, field, variables, population, and research type, and return each title with its style (descriptive, declarative, interrogative, compound). Titles come from deterministic templates; the same inputs and regenerate_key always give the same list.

This page documents the MCP tool findutils:research_title_generator. See the REST reference →

Call it over MCP

Tool name findutils:research_title_generator · no API keys · 120 requests/min per IP

Claude Code

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

Claude Desktop — claude_desktop_config.json

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

Raw JSON-RPC (any MCP client) — verified example

curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "research_title_generator",
      "arguments": {
        "topic": "student motivation",
        "variables": "sleep quality, academic performance",
        "research_type": "quantitative"
      }
    }
  }'

Input schema

Argument Type Required Description
topic string yes Research topic, e.g. "student motivation".
field string no Academic field, e.g. "Educational Psychology".
variables string no Comma-separated key variables, e.g. "sleep quality, academic performance".
population string no Target population, e.g. "university students".
research_type string (quantitative | qualitative | mixed | review | case_study) no Research design. Default "quantitative". Default: "quantitative".
regenerate_key integer no Change this number to get a different selection and order of titles. Default 0. Default: 0.

Example arguments (verified)

{
  "topic": "student motivation",
  "variables": "sleep quality, academic performance",
  "research_type": "quantitative"
}

Also a REST endpoint

The same tool answers plain HTTP at POST /api/tools/research-title-generator/execute — no key, 60 requests/min.

Open the REST reference for Research Title Generator →

More Education tools