Mimicly

Make fictional chat mockups and text story scenes, with a preview and a link to edit in Mimicly.

Should I use this

Quality & Safety

A
Description quality
100%
Schema completeness
95%
Naming quality
100%
Poisoning risk
100%
Permission match
100%
Protocol compliance
100%

Based on automated analysis of tool definitions and protocol compliance.

Context Cost

~1,060Tokens (tool definitions)
~4.3 KBTypical response size
Moderate attention impact (0.83% of 128k context)

This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.

Install

One-Click Install

Add this to your `claude_desktop_config.json` file:

{
  "mcpServers": {
    "chat-mockups": {
      "url": "https://mimicly.net/mcp"
    }
  }
}

Remote endpoints

https://mimicly.net/mcpstreamable-http

What it can do

Tool inventory

Tools (2)

🟢 Read-only🟡 Write🔴 Delete⚪ Unknown
🟢list_templates(category)

Lists the chat templates Mimicly can fill in: messaging apps (for example WhatsApp, iMessage, Telegram, Discord) and AI chat apps (for example ChatGPT, Claude, Gemini). Returns each template id, display name, category, whether it can be recorded as an animated video in Mimicly, and whether clean export needs Mimicly Pro. Call it when you are not sure which template id to pass to create_chat_mockup.

Input Schema

{
  "type": "object",
  "properties": {
    "category": {
      "description": "Optional filter. \"messages\" for messaging apps, \"ai-chat\" for AI assistant chats.",
      "type": "string",
      "enum": [
        "messages",
        "ai-chat"
      ]
    }
  }
}

Output Schema

{
  "type": "object",
  "properties": {
    "templates": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "category": {
            "type": "string",
            "enum": [
              "messages",
              "ai-chat"
            ]
          },
          "recordable": {
            "type": "boolean",
            "description": "Can be recorded as an animated video in Mimicly."
          },
          "access": {
            "type": "string",
            "enum": [
              "free",
              "pro"
            ],
            "description": "Clean export of \"pro\" templates needs Mimicly Pro; everyone can open and edit them."
          }
        },
        "required": [
          "id",
          "name",
          "category",
          "recordable",
          "access"
        ]
      }
    }
  },
  "required": [
    "templates"
  ]
}
🟢create_chat_mockup(template, participants, me_name, messages, title, ...)

Builds a chat mockup in a Mimicly template from a conversation the user wants, for a story, video, lesson, design, presentation or demo. Returns a watermarked preview image URL, an "Open in Mimicly editor" URL where the user can edit, export or record the scene, and the Mimicly iOS App Store link. Scenes are fictional mockups written by the user. The tool is not for posing as a real person, company or institution, for making a chat look like real evidence, or for misleading someone, and the server refuses such scenes. Limits: up to 30 messages and 4000 characters in total. Messages cannot contain links, login or verification codes, passwords, or payment or account details. Nothing is posted or saved to an account. Links stop working after 30 days.

Input Schema

{
  "type": "object",
  "properties": {
    "template": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64,
      "description": "Template id from list_templates, for example \"whatsapp\", \"imessage\" or \"chatgpt\"."
    },
    "participants": {
      "description": "Display names of the other people in the chat, not the user. Use made-up or user-provided names. Ignored by AI chat templates.",
      "maxItems": 8,
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 40
      }
    },
    "me_name": {
      "description": "Optional display name for the user's own messages. Defaults to \"You\".",
      "type": "string",
      "minLength": 1,
      "maxLength": 40
    },
    "messages": {
      "minItems": 1,
      "maxItems": 30,
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "from": {
            "type": "string",
            "minLength": 1,
            "maxLength": 40,
            "description": "\"me\" for the user's messages, \"them\" for the other person, or one of the participant names in a group chat. In AI chat templates, \"me\" is the prompt and anything else is the assistant reply."
          },
          "text": {
            "type": "string",
            "minLength": 1,
            "maxLength": 500,
            "description": "Message text, up to 500 characters. Plain text; links are not accepted."
          },
          "time": {
            "description": "Optional timestamp label shown on the message, for example \"9:41 AM\".",
            "type": "string",
            "maxLength": 12
          }
        },
        "required": [
          "from",
          "text"
        ]
      },
      "description": "Conversation in order, 1 to 30 messages, at most 4000 characters in total."
    },
    "title": {
      "description": "Optional scene title, for example \"Weekend plans\". Used as the group or conversation name when the template shows one.",
      "type": "string",
      "maxLength": 80
    },
    "theme": {
      "description": "Optional light or dark appearance. Defaults to the template default.",
      "type": "string",
      "enum": [
        "light",
        "dark"
      ]
    }
  },
  "required": [
    "template",
    "messages"
  ]
}

Output Schema

{
  "type": "object",
  "properties": {
    "template": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        }
      },
      "required": [
        "id",
        "name"
      ]
    },
    "title": {
      "type": "string"
    },
    "messageCount": {
      "type": "integer"
    },
    "previewImageUrl": {
      "type": "string",
      "format": "uri"
    },
    "editorUrl": {
      "type": "string",
      "format": "uri"
    },
    "appStoreUrl": {
      "type": "string",
      "format": "uri"
    },
    "expiresAt": {
      "type": "string",
      "format": "date-time"
    },
    "notice": {
      "type": "string"
    }
  },
  "required": [
    "template",
    "title",
    "messageCount",
    "previewImageUrl",
    "editorUrl",
    "appStoreUrl",
    "expiresAt",
    "notice"
  ]
}

Community

Rate this Server

Evidence

Recent observations

verifiedversion not recorded2 tools