# Social Media Bio Generator — MCP tool `findutils:social_media_bio_generator`

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.

- Category: generators
- 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/social-media-bio-generator/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/mcp/social-media-bio-generator/
- Same tool on the other surface: https://findutils.com/api/social-media-bio-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": "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):

```json
{
  "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

```bash
curl -X POST https://api.findutils.com/api/tools/social-media-bio-generator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "platform": "instagram",
    "style": "professional",
    "profession": "Software Developer",
    "skills": "Web & UI/UX",
    "achievement": "Helped 10K+ followers",
    "cta": "DM for collabs",
    "location": "Istanbul"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/social-media-bio-generator
```

Full REST reference: https://findutils.com/api/social-media-bio-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
