Social Media Bio Generator

Generators REST API MCP

Compose a social-media profile bio from a profession, skills, an achievement, a location and a call to action in one of five styles (professional, creative, minimalist, fun, inspirational). Returns the bio, its lines, and its length against the platform limit (Instagram 150, Twitter 160, TikTok 80, LinkedIn 220, YouTube 1000). Template-based, no AI.

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

Call it over MCP

Tool name findutils:social_media_bio_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": "social_media_bio_generator",
      "arguments": {
        "platform": "instagram",
        "style": "professional",
        "profession": "Software Developer",
        "skills": "Web & UI/UX",
        "achievement": "Helped 10K+ followers",
        "cta": "DM for collabs",
        "location": "Istanbul"
      }
    }
  }'

Input schema

Argument Type Required Description
platform string (instagram | twitter | tiktok | linkedin | youtube) no Target platform; sets the character limit and the separator (Twitter joins with " | ", others with a newline). Default "instagram". Default: "instagram".
style string (professional | creative | minimalist | fun | inspirational) no Bio style. Default "professional". Note: "minimalist" omits the achievement and "inspirational" omits the location, like the page. Default: "professional".
profession string no Job title or role, e.g. "Software Developer".
skills string no Skills or niche, e.g. "Web technologies & UI/UX".
achievement string no A notable achievement, e.g. "Helped 10K+ followers".
cta string no Call to action, e.g. "DM for collabs".
location string no City or country.
include_emojis boolean no Prefix lines with emojis. Default true. Default: true.

Example arguments (verified)

{
  "platform": "instagram",
  "style": "professional",
  "profession": "Software Developer",
  "skills": "Web & UI/UX",
  "achievement": "Helped 10K+ followers",
  "cta": "DM for collabs",
  "location": "Istanbul"
}

Also a REST endpoint

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

Open the REST reference for Social Media Bio Generator →

More Generators tools