@zients/line-mcp-server
Provides tools for interacting with the LINE Messaging API, enabling AI agents to send messages (text, image, sticker, flex, video, audio, location), manage groups and rooms, configure rich menus, and query analytics such as follower counts and message statistics.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@zients/line-mcp-serverBroadcast a text message to all followers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@zients/line-mcp-server
MCP Server for LINE Messaging API — let AI agents send messages, manage groups, configure rich menus, and query analytics on LINE. Works with Codex CLI, Claude Code, OpenClaw, and any MCP-compatible client.
Disclaimer: This project is not affiliated with, endorsed by, or sponsored by LY Corporation or LINE.
Features
Messaging (12 tools)
Tool | Description |
| Send text to a user, group, or room |
| Send an image (HTTPS URLs only) |
| Send a LINE sticker |
| Send a Flex Message (rich layout) |
| Send a video (HTTPS URLs only) |
| Send an audio clip (HTTPS URLs only) |
| Send a location (lat/lng) |
| Display a loading animation in a chat |
| Broadcast text to all followers |
| Send text to multiple users (max 500) |
| Broadcast a Flex Message to all followers |
| Send a Flex Message to multiple users (max 500) |
Profile (2 tools)
Tool | Description |
| Get user display name, picture, status, and language |
| Get group name and picture (bot must be a member of the group) |
Group & Room Management (8 tools)
Tool | Description |
| Get number of members in a group |
| List all member IDs in a group |
| Get a specific member's profile within a group |
| Bot leaves a group (permanent) |
| Get number of members in a room |
| List all member IDs in a room |
| Get a specific member's profile within a room |
| Bot leaves a room (permanent) |
Rich Menu (9 tools)
Tool | Description |
| Create a new rich menu |
| List all rich menus |
| Get a specific rich menu by ID |
| Delete a rich menu |
| Set the default rich menu for all users |
| Get the current default rich menu ID |
| Remove the default rich menu |
| Assign a rich menu to a specific user |
| Remove a user's assigned rich menu |
Insight & Analytics (13 tools)
Tool | Description |
| Get bot's display name, ID, chat mode, and mark-as-read mode |
| Get monthly message sending quota |
| Get messages sent this month |
| List follower user IDs (paginated) |
| Get follower count statistics for a date (yyyyMMdd, UTC+9) |
| Get follower demographic data (age, gender, area) |
| Get number of sent reply messages for a date (yyyyMMdd, UTC+9) |
| Get number of sent push messages for a date (yyyyMMdd, UTC+9) |
| Get number of sent multicast messages for a date (yyyyMMdd, UTC+9) |
| Get number of sent broadcast messages for a date (yyyyMMdd, UTC+9) |
| Get number of message deliveries for a date (yyyyMMdd, UTC+9) |
| Get message event statistics by request ID |
| Get statistics for a custom aggregation unit within a date range |
Related MCP server: LineWhiz
Prerequisites
Node.js >= 22
A LINE Official Account with Messaging API enabled
Channel Access Token
Create a LINE Official Account
Go to LINE Official Account Manager and create an account
Go to LINE Developers Console and log in
Create a Provider (or select an existing one)
Under the Provider, create a Messaging API Channel linked to your Official Account
Go back to LINE Developers Console, select your Provider and Channel
In the Basic settings tab, find Your user ID (
U...) — for testing push messages to yourselfGo to the Messaging API tab, scroll to the bottom, and click Issue under Channel access token (long-lived) to generate your token
Enable Group/Room Features (Optional)
To use group/room tools or send messages to groups and rooms:
In LINE Official Account Manager → Settings → Account settings → enable Allow bot to join groups
In LINE Official Account Manager → Settings → Response settings → enable Webhook
In LINE Developers Console → your Channel → Messaging API tab → set your Webhook URL
Invite the bot to a group or room in the LINE app (search by the bot's Basic ID
@xxxshown in LINE Developers Console → Basic settings)To get the ID, receive the
joinevent or any message event via Webhook — it will containsource.groupId(for groups) orsource.roomId(for rooms)
Setup (npx — recommended)
No installation needed — just configure your MCP client.
DEFAULT_UID is optional. Set it when you want single-target messaging tools to use a default LINE User ID, so calls like push_text_message can omit to.
Codex CLI
codex mcp add @zients/line-mcp-server \
--env CHANNEL_ACCESS_TOKEN=<your-token> \
--env DEFAULT_UID=U... \
-- npx -y @zients/line-mcp-serverStart a new Codex session after adding the MCP server so Codex loads the new tools.
Claude Code
claude mcp add @zients/line-mcp-server -t stdio \
-e CHANNEL_ACCESS_TOKEN=<your-token> \
-e DEFAULT_UID=U... \
-- npx -y @zients/line-mcp-serverOpenClaw (mcporter)
mcporter config add @zients/line-mcp-server \
--command npx \
--arg -y --arg @zients/line-mcp-server \
--env CHANNEL_ACCESS_TOKEN=<your-token> \
--env DEFAULT_UID=U... \
--description "LINE Messaging API tools"Other MCP clients
Add the following to your MCP client configuration:
{
"mcpServers": {
"@zients/line-mcp-server": {
"command": "npx",
"args": ["-y", "@zients/line-mcp-server"],
"env": {
"CHANNEL_ACCESS_TOKEN": "<your-token>",
"DEFAULT_UID": "U..."
}
}
}
}Setup (build from source)
git clone https://github.com/zients/line-mcp-server.git
cd line-mcp-server
npm install
npm run build # compiles TypeScript to dist/Codex CLI
codex mcp add @zients/line-mcp-server \
--env CHANNEL_ACCESS_TOKEN=<your-token> \
--env DEFAULT_UID=U... \
-- node /path/to/line-mcp-server/dist/index.jsClaude Code
claude mcp add @zients/line-mcp-server -t stdio \
-e CHANNEL_ACCESS_TOKEN=<your-token> \
-e DEFAULT_UID=U... \
-- node /path/to/line-mcp-server/dist/index.jsOpenClaw (mcporter)
mcporter config add @zients/line-mcp-server \
--command node \
--arg /path/to/line-mcp-server/dist/index.js \
--env CHANNEL_ACCESS_TOKEN=<your-token> \
--env DEFAULT_UID=U... \
--description "LINE Messaging API tools"Verify & call tools (mcporter)
mcporter list @zients/line-mcp-server --schema
mcporter call @zients/line-mcp-server.push_text_message to=U... text="Hello"
mcporter call @zients/line-mcp-server.push_text_message text="Hello from DEFAULT_UID"
mcporter call @zients/line-mcp-server.get_user_profile userId=U...
mcporter call @zients/line-mcp-server.get_bot_infoAfter registration, Claude can call LINE tools directly:
"Send 'Hello' to my LINE group C1234567890"
Target ID Prefixes
Prefix | Type |
| User ID |
| Group ID |
| Room ID |
Project Structure
src/
├── index.ts # Entry point (stdio MCP server)
├── services/
│ └── line.ts # LineService interface + LineMessagingClient
├── tools/
│ ├── messaging.ts # 12 messaging tools
│ ├── profile.ts # 2 profile tools
│ ├── group.ts # 8 group/room management tools
│ ├── richmenu.ts # 9 rich menu tools
│ └── insight.ts # 13 insight/analytics tools
└── utils/
├── error.ts # Error formatting utility
├── flex.ts # Flex message JSON validation
└── target.ts # DEFAULT_UID parsing and target fallback
tests/
├── helpers/
│ └── mock-line-service.ts # Shared mock LineService for all tests
├── integration/
│ └── server.test.ts # MCP server integration test (all 44 tools)
├── services/
│ └── line.test.ts # LineMessagingClient unit tests
├── tools/
│ ├── messaging.test.ts # Messaging tool handler tests
│ ├── profile.test.ts # Profile tool handler tests
│ ├── group.test.ts # Group/room tool handler tests
│ ├── richmenu.test.ts # Rich menu tool handler tests
│ └── insight.test.ts # Insight tool handler tests
└── utils/
├── error.test.ts # Error formatting tests
└── target.test.ts # DEFAULT_UID and target fallback testsTesting
npm test # run all tests
npm run test:coverage # run with coverage reportEnvironment Variables
Variable | Required | Description |
| Yes | LINE Messaging API channel access token |
| No | Default recipient User ID (must start with |
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zients/line-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server