AAA
AEO Score: 1.00 / 1.00

LINE Messaging MCP

Communication
Excellent — Best-in-class agent integration
Agent Ready
✓ Verified
MCP Type
Official MCP
Success Rate
🟢 High
Agent Activity
● New
Recipes
✓ Available

Get Full Integration Guide

Current auth setup, endpoints, rate limits, known pitfalls, and step-by-step recipes — kept fresh from registry checks, curated official-doc guides, and agent reports.

npx @kansei-link/mcp-server

Then use: search_servicesget_service_detail

How to Connect LINE Messaging MCP to an AI Agent

Auth setup

1. Go to developers.line.biz. 2. Create Provider > Create Messaging API Channel. 3. Issue channel access token (long-lived). 4. Set webhook URL for receiving messages.

Key facts

Base URLhttps://api.line.me/v2/bot/
API versionv2
AuthChannel Access Token. Create a LINE Messaging API channel in LINE Developers Console. Use the long-lived or stateless channel access token in Authorization: Bearer header.
Token URLhttps://api.line.me/oauth2/v3/token
Request bodyapplication/json
PaginationNot applicable for messaging. For group members: continuationToken param.
Rate limitPush: 100,000/min. Reply: unlimited. Broadcast: depends on plan (free plan: 200/month total messages).
Error formatJSON: {"message":"The request body has 1 error(s)","details":[{"message":"...","property":"..."}]}

Key endpoints

MethodPathDescription
POST/message/pushSend push message to a user
POST/message/replyReply to a user message (via replyToken)
POST/message/broadcastSend message to all friends
GET/profile/{userId}Get user profile
POST/message/multicastSend to multiple specific users

Quickstart

POST /v2/bot/message/push HTTP/1.1
Host: api.line.me
Authorization: Bearer {channel_access_token}
Content-Type: application/json

{"to":"U1234567890abcdef","messages":[{"type":"text","text":"Hello!"}]}

Response: {}  (200 OK, empty body on success)

Agent pitfalls & tips

Source: curated by KanseiLink from official documentation (docs) and registry checks. Last reviewed: 2026-04-04. Specs change — verify against the official docs before production use.

Frequently Asked Questions

What is LINE Messaging MCP's AEO score?
LINE Messaging MCP has an AEO score of 1.00 and is rated AAA (Best-in-class agent integration). AEO (Agent Engine Optimization) measures how well a SaaS service works with AI agents. Scores range from 0.00 to 1.00, with grades from AAA (best) to D (not agent-ready).
Is LINE Messaging MCP AI-agent-ready?
LINE Messaging MCP is currently ✓ verified for AI agent use. It offers an official MCP (Model Context Protocol) server, which means AI agents can connect directly. For detailed connection guides, auth setup, and known pitfalls, use the KanseiLink MCP tool.
How does LINE Messaging MCP compare to other Communication services?
In the Communication category, LINE Messaging MCP is rated AAA. KanseiLink evaluates services based on MCP availability, API quality, documentation, auth-guide clarity, and integration recipe availability (methodology published). Visit the full rankings at kansei-link.com to see how LINE Messaging MCP compares.
How can I integrate LINE Messaging MCP with an AI agent?
The fastest way to integrate LINE Messaging MCP with an AI agent is through KanseiLink MCP. Install it with: npx @kansei-link/mcp-server — then use the search_services and get_service_detail tools to get the current auth setup, endpoints, rate limits, and agent-specific tips. This data is kept fresh from registry checks, curated official-doc guides, and agent reports.
How do I authenticate with LINE Messaging MCP?
Channel Access Token. Create a LINE Messaging API channel in LINE Developers Console. Use the long-lived or stateless channel access token in Authorization: Bearer header. Setup: 1. Go to developers.line.biz. 2. Create Provider > Create Messaging API Channel. 3. Issue channel access token (long-lived). 4. Set webhook URL for receiving messages.
What are LINE Messaging MCP's API rate limits?
Push: 100,000/min. Reply: unlimited. Broadcast: depends on plan (free plan: 200/month total messages).