LINE Rich Menu Maker

v1.0.0

Visual editor for creating and managing LINE rich menus

linemessagingeditorvisual

Server Information

Server ID
linerichmenu
Endpoint URL
https://linerichmenu.bookchaowalit.com
Author
bookchaowalit
Available Tools
4 tools

About

A modern web application for creating, editing, and managing LINE rich menus. Built with Next.js 14, Shadcn UI, Tailwind CSS, and PostgreSQL. ## Features - 🎨 **Visual Editor**: Intuitive drag-and-drop interface for creating rich menu areas - 📱 **Multiple Menu Sizes**: Support for all LINE rich menu sizes (Small, Mini, Medium, Large) - 🗄️ **Database Storage**: PostgreSQL backend for persistent menu storage - 🔄 **Full CRUD Operations**: Create, read, update, and delete rich menus - 🎯 **Action Types**: Support for message, postback, URI, datetime picker, camera, camera roll, and location actions - 📥 **Export Functionality**: Export menus as PNG or JPEG images - 🌐 **Responsive Design**: Works on desktop and mobile devices

Available Tools

linerichmenu_list_menus

List all LINE rich menus

Input Schema
{
  "type": "object",
  "properties": {}
}

linerichmenu_get_menu

Get a specific rich menu by ID

Input Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number"
    }
  }
}

linerichmenu_create_menu

Create a new LINE rich menu

Input Schema
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "size": {
      "type": "string",
      "enum": [
        "small",
        "mini",
        "medium",
        "large"
      ]
    }
  }
}

linerichmenu_export_menu_image

Export a menu as PNG or JPEG image

Input Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number"
    },
    "format": {
      "type": "string",
      "enum": [
        "png",
        "jpeg"
      ]
    }
  }
}

Usage Example

Connect to this MCP server using the Model Context Protocol:

{
  "mcpServers": {
    "linerichmenu": {
      "command": "node",
      "args": ["path/to/server.js"],
      "env": {
        "SERVER_URL": "https://linerichmenu.bookchaowalit.com"
      }
    }
  }
}