initials-avatar

initials-avatar

3.5

The Initials Avatar MCP Server provides a tool for generating initials-based avatar images with customizable options.

The Initials Avatar MCP Server is a versatile tool designed to generate avatar images using the initials of a given name. It offers a range of customization options, including appearance and color settings, to create personalized avatars. The service operates on a freemium model, offering basic features for free and additional functionalities through paid tiers. This server is ideal for developers looking to enhance user profiles with dynamic avatar solutions.

Features

  • Initials Avatar Generation: Quickly generate avatar images based on the initials of a given name.
  • Customizable Appearance: Personalize the look of your avatars with options for rounded corners, uppercase initials, font size, avatar size, and more.
  • Color Customization: Choose custom background and initials colors using hexadecimal color codes.

MCP Tools

  • Avatar: Generates an avatar image using the initials of the provided name.

Usage with Different Platforms

python

python
import requests

url = 'http://initials-avatar-server/api/avatar'
params = {
    'name': 'John Doe',
    'rounded': True,
    'uppercase': True,
    'font_size': 0.5,
    'length': 2,
    'size': 128,
    'background': 'FF5733',
    'color': 'FFFFFF'
}
response = requests.get(url, params=params)
with open('avatar.png', 'wb') as f:
    f.write(response.content)