Token导航 LogoToken导航TokenDH.com
Line Notification Server MCP logo
运维云端stdio官方级别未说明来源级核验

Line Notification Server MCP

MCP Server

github

LINE Notification Server是一个用于管理和操作LINE消息系统的服务器工具,支持发送消息、管理用户、创建推送活动等功能。

工具数

27

提示词数

0

GitHub Stars

0

资源数

0
消息管理TypeScriptClaude用户管理Claude DesktopClaude

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

jameslai-sparkofy

提供方

jameslai-sparkofy

最后核验

2026/5/17 20:22

运行时

Node.js

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

npx github:jameslai-sparkofy/line-notification-server-mcp

详细介绍

LINE Notification Server MCP

LINE Notification Server 的 Model Context Protocol (MCP) 伺服器,讓 Claude 可以直接操作 LINE 訊息管理系統。

安裝

使用 npx 從 GitHub(推薦)

npx github:jameslai-sparkofy/line-notification-server-mcp

從原始碼安裝

git clone https://github.com/jameslai-sparkofy/line-notification-server-mcp.git
cd line-notification-server-mcp
npm install
npm run build

設定

Claude Code 設定

在專案根目錄建立 .mcp.json

{
  "mcpServers": {
    "line-notification": {
      "command": "npx",
      "args": ["-y", "github:jameslai-sparkofy/line-notification-server-mcp"],
      "env": {
        "LINE_API_BASE_URL": "https://line.yes-ceramics.com",
        "LINE_API_USERNAME": "admin",
        "LINE_API_PASSWORD": "your-password"
      }
    }
  }
}

Claude Desktop 設定

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "line-notification": {
      "command": "npx",
      "args": ["-y", "github:jameslai-sparkofy/line-notification-server-mcp"],
      "env": {
        "LINE_API_BASE_URL": "https://line.yes-ceramics.com",
        "LINE_API_USERNAME": "admin",
        "LINE_API_PASSWORD": "your-password"
      }
    }
  }
}

環境變數

變數說明必要
LINE_API_BASE_URLLINE Notification Server 的網址
LINE_API_KEYAPI 金鑰(優先使用)擇一
LINE_API_USERNAMEBasic Auth 使用者名稱擇一
LINE_API_PASSWORDBasic Auth 密碼擇一
LINE_DEFAULT_BOT_ID預設的 Bot ID選填

可用工具

訊息相關

  • line_send_text - 發送文字訊息
  • line_send_flex - 發送 Flex Message
  • line_send_template - 使用模板發送訊息
  • line_list_templates - 列出訊息模板

用戶相關

  • line_search_users - 搜尋用戶
  • line_get_user - 取得用戶詳情
  • line_update_user - 更新用戶資料
  • line_update_user_tags - 更新用戶標籤
  • line_list_groups - 列出群組

對話相關

  • line_get_conversation - 取得對話歷史
  • line_get_unread - 取得未讀訊息
  • line_mark_read - 標記已讀
  • line_list_conversations - 取得對話列表

推播活動

  • line_list_campaigns - 列出推播活動
  • line_get_campaign - 取得活動詳情
  • line_create_campaign - 建立推播活動
  • line_enroll_campaign - 加入用戶到活動
  • line_cancel_campaign - 取消活動

管理工具

  • line_list_bots - 列出 Bot 帳號
  • line_get_bot - 取得 Bot 詳情
  • line_list_tags - 列出標籤
  • line_create_tag - 建立標籤
  • line_get_stats - 取得統計資料
  • line_get_send_logs - 取得發送日誌
  • line_get_features - 取得功能設定
  • line_get_branding - 取得品牌設定

萬用工具

  • line_call_api - 調用任意 API 端點

使用範例

搜尋用戶並發送訊息

Claude: 幫我找名字包含「王」的用戶,然後發送生日祝福給他們

[Claude 會使用 line_search_users 搜尋用戶]
[找到用戶後,使用 line_send_text 發送訊息]

查看未讀訊息

Claude: 有沒有未讀訊息?

[Claude 會使用 line_get_unread 取得未讀訊息列表]

建立推播活動

Claude: 幫我建立一個中秋節促銷活動,發給所有 VIP 客戶

[Claude 會使用 line_create_campaign 建立活動]
[使用 line_list_tags 找到 VIP 標籤]
[設定活動目標為該標籤]

開發

建置

npm run build

開發模式

npm run dev

授權

MIT License

目录标签

目录标签

消息管理TypeScriptClaude用户管理本地部署推送活动LINE集成

支持客户端

Claude DesktopClaude

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

none

运行时(runtime,运行环境)

Node.js

来源包(packageName,安装包名)

github

工具数量(toolCount,工具数)

27

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdionone部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP