.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/line/line-bot-mcp-server
home/mcp-servers/line/line-bot-mcp-server
line avatar

line-bot-mcp-server

byline· 1 MCP server

Stars

725

Forks

139

Category

Agent Meta & Communication

View on GitHub

TL;DR

日本語版 READMEはこちら

How to install line-bot-mcp-server?

line/line-bot-mcp-server
$git clone https://github.com/line/line-bot-mcp-server

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install line-bot-mcp-server by running `git clone https://github.com/line/line-bot-mcp-server`, then use it for the current task and follow its documentation at https://github.com/line/line-bot-mcp-server.

Files · 1

View on GitHub
README.md
1[日本語版 READMEはこちら](README.ja.md)
2 
3# LINE Bot MCP Server
4 
5[![npmjs](https://badge.fury.io/js/%40line%2Fline-bot-mcp-server.svg)](https://www.npmjs.com/package/@line/line-bot-mcp-server)
6 
7[Model Context Protocol (MCP)](https://github.com/modelcontextprotocol) server implementation that integrates the LINE Messaging API to connect an AI Agent to the LINE Official Account.
8 
9![](/assets/demo.png)
10 
11> [!NOTE]
12> This repository is provided as a preview version. While we offer it for experimental purposes, please be aware that it may not include complete functionality or comprehensive support.
13 
14## Tools
15 
161. **push_text_message**
17 - Push a simple text message to a user via LINE.
18 - **Inputs:**
19 - `userId` (string?): The user ID to receive a message. Defaults to DESTINATION_USER_ID. Either `userId` or `DESTINATION_USER_ID` must be set.
20 - `message.text` (string): The plain text content to send to the user.
212. **push_flex_message**
22 - Push a highly customizable flex message to a user via LINE.
23 - **Inputs:**
24 - `userId` (string?): The user ID to receive a message. Defaults to DESTINATION_USER_ID. Either `userId` or `DESTINATION_USER_ID` must be set.
25 - `message.altText` (string): Alternative text shown when flex message cannot be displayed.
26 - `message.contents` (any): The contents of the flex message. This is a JSON object that defines the layout and components of the message.
27 - `message.contents.type` (enum): Type of the container. 'bubble' for single container, 'carousel' for multiple swipeable bubbles.
283. **broadcast_text_message**
29 - Broadcast a simple text message via LINE to all users who have followed your LINE Official Account.
30 - **Inputs:**
31 - `message.text` (string): The plain text content to send to the users.
324. **broadcast_flex_message**
33 - Broadcast a highly customizable flex message via LINE to all users who have added your LINE Official Account.
34 - **Inputs:**
35 - `message.altText` (string): Alternative text shown when flex message cannot be displayed.
36 - `message.contents` (any): The contents of the flex message. This is a JSON object that defines the layout and components of the message.
37 - `message.contents.type` (enum): Type of the container. 'bubble' for single container, 'carousel' for multiple swipeable bubbles.
385. **get_profile**
39 - Get detailed profile information of a LINE user including display name, profile picture URL, status message and language.
40 - **Inputs:**
41 - `userId` (string?): The ID of the user whose profile you want to retrieve. Defaults to DESTINATION_USER_ID.
426. **get_message_quota**
43 - Get the message quota and consumption of the LINE Official Account. This shows the monthly message limit and current usage.
44 - **Inputs:**
45 - None
467. **get_rich_menu_list**
47 - Get the list of rich menus associated with your LINE Official Account.
48 - **Inputs:**
49 - None
508. **delete_rich_menu**
51 - Delete a rich menu from your LINE Official Account.
52 - **Inputs:**
53 - `richMenuId` (string): The ID of the rich menu to delete.
549. **set_rich_menu_default**
55 - Set a rich menu as the default rich menu.
56 - **Inputs:**
57 - `richMenuId` (string): The ID of the rich menu to set as default.
5810. **cancel_rich_menu_default**
59 - Cancel the default rich menu.
60 - **Inputs:**
61 - None
6211. **create_rich_menu**
63 - Create a rich menu based on the given actions. Generate and upload an image. Set as default.
64 - **Inputs:**
65 - `chatBarText` (string): Text displayed in chat bar, also used as rich menu name.
66 - `actions` (array): The actions of the rich menu. You can specify minimum 1 to maximum 6 actions. Each action can be one of the following types:
67 - `postback`: For sending a postback action
68 - `message`: For sending a text message
69 - `uri`: For opening a URL
70 - `datetimepicker`: For opening a date/time picker
71 - `camera`: For opening the camera
72 - `cameraRoll`: For opening

Preview

line/line-bot-mcp-serverline/line-bot-mcp-server

[日本語版 READMEはこちら](README.ja.md)

# LINE Bot MCP Server

[![npmjs](https://badge.fury.io/js/%40line%2Fline-bot-mcp-server.svg)](https://www.npmjs.com/package/@line/line-bot-mcp-server)

[Model Context Protocol (MCP)](https://github.com/modelcontextprotocol) server implementation that integrates the LINE Messaging API to connect an AI Agent to t

Repoline/line-bot-mcp-server
TypeMCP Servers
CategoryAgent Meta & Communication
UpdatedJul 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

MCPlinelinebot

Related

6 picks
Type
  1. cdeust avatarcortexScientifically-grounded persistent memory for Claude — local-first, hybrid retrieval, 72 references.MCP ServersJul 20262.7k68
  2. samanhappy avatarmcphubA hub server for mcp serversMCP ServersJul 20262.7k2.3k
  3. loonghao avatarwecom-bot-mcp-serverWeCom Bot MCP Server - A Python server for WeCom (WeChat Work) bot following the Model Context Protocol (MCP)MCP ServersJul 20262.5k98
  4. toolprint avatarhypertool-mcpDynamically expose tools from proxied servers based on an Agent PersonaMCP ServersOct 20252.0k155
  5. arindam200 avatarreddit-mcpReddit MCP ServerMCP ServersDec 20252.0k296
  6. raysonmeng avataragent-bridgeBridge between Claude Code and Codex — bidirectional agent communication via MCP Channel + JSON-RPCMCP ServersJul 20261.8k270