mirror-ai

mirror-ai

3.5

Mirror-AI is a versatile MCP server designed to provide personalized avatar creation and sticker generation services.

Mirror-AI MCP Server is a comprehensive platform that allows users to create personalized avatars and a vast collection of stickers tailored to individual preferences. It offers seamless integration into applications, enabling creative uses of personalized imagery. The server supports advanced features such as avatar creation, sticker collection, face recognition, token management, and flexible styling options. Users can upload photos, customize avatars with various attributes, and generate stickers that can be used creatively within applications. Mirror-AI is ideal for applications requiring user-centric customization and enhances user engagement through its unique offerings.

Features

  • Avatar Creation: Generate personalized avatars by uploading photos and selecting various attributes like hats, glasses, and hair styles.
  • Sticker Collection: Access a collection of over 2000 stickers that can be customized to match users' avatars.
  • Face Recognition: Utilize advanced face recognition capabilities to estimate attributes such as age and gender.
  • Token Management: Securely manage and operate face data using token-based authentication.
  • Flexible Styles: Choose from different styles such as 'kenga' and 'anime' to personalize avatars and stickers further.

MCP Tools

  • Apply Parts: Retrieve IDs of parts currently applied to the face and explore available options.
  • Apply Selected Parts: Apply chosen parts to customize the avatar's appearance.
  • Generate Face: Remove a generated face that is no longer needed.
  • Save Generated Face: Save a generated face for future use.
  • Generate Emoji Face with a Photo: Upload a photo to create an emoji avatar.
  • Token Management: Obtain a token for managing face data securely.
  • Face Recognition Attributes: Retrieve estimated attributes like age and gender from the uploaded photo.
  • Stickers Collection: Obtain a URL for a sticker based on the generated face and style. Styles include 'kenga' and 'anime'.

Usage with Different Platforms

mcp

python
# Example script to upload a photo and generate an avatar
import requests

url = 'https://mirror-ai-server.com/api/upload'
files = {'file': open('user_photo.jpg', 'rb')}
response = requests.post(url, files=files)

if response.status_code == 200:
    print('Photo uploaded successfully!')
    avatar_url = response.json().get('avatar_url')
    print(f'Avatar URL: {avatar_url}')
else:
    print('Failed to upload photo.')