You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,12 +16,12 @@
16
16
1.**push_text_message**
17
17
- Push a simple text message to a user via LINE.
18
18
-**Inputs:**
19
-
-`user_id` (string?): The user ID to receive a message. Defaults to DESTINATION_USER_ID.
19
+
-`user_id` (string?): The user ID to receive a message. Defaults to DESTINATION_USER_ID. Either `user_id` or `DESTINATION_USER_ID` must be set.
20
20
-`message.text` (string): The plain text content to send to the user.
21
21
2.**push_flex_message**
22
22
- Push a highly customizable flex message to a user via LINE.
23
23
-**Inputs:**
24
-
-`user_id` (string?): The user ID to receive a message. Defaults to DESTINATION_USER_ID.
24
+
-`user_id` (string?): The user ID to receive a message. Defaults to DESTINATION_USER_ID. Either `user_id` or `DESTINATION_USER_ID` must be set.
25
25
-`message.altText` (string): Alternative text shown when flex message cannot be displayed.
26
26
-`message.content` (any): The content of the flex message. This is a JSON object that defines the layout and components of the message.
27
27
-`message.contents.type` (enum): Type of the container. 'bubble' for single container, 'carousel' for multiple swipeable bubbles.
@@ -62,7 +62,7 @@ Please add the following configuration for an AI Agent like Claude Desktop or Cl
62
62
Set the environment variables or arguments as follows:
63
63
64
64
-`CHANNEL_ACCESS_TOKEN`: (required) Channel Access Token. You can confirm this by following [this instructions](https://developers.line.biz/en/docs/basics/channel-access-token/#long-lived-channel-access-token).
65
-
-`DESTINATION_USER_ID`: (optional) The default user ID of the recipient. You can confirm this by following [this instructions](https://developers.line.biz/en/docs/messaging-api/getting-user-ids/#get-own-user-id).
65
+
-`DESTINATION_USER_ID`: (optional) The default user ID of the recipient. If the Tool's input does not include `user_id`, `DESTINATION_USER_ID` is required. You can confirm this by following [this instructions](https://developers.line.biz/en/docs/messaging-api/getting-user-ids/#get-own-user-id).
66
66
67
67
```json
68
68
{
@@ -112,7 +112,8 @@ Set the environment variables or arguments as follows:
112
112
113
113
-`mcpServers.args`: (required) The path to `line-bot-mcp-server`.
114
114
-`CHANNEL_ACCESS_TOKEN`: (required) Channel Access Token. You can confirm this by following [this instructions](https://developers.line.biz/en/docs/basics/channel-access-token/#long-lived-channel-access-token).
115
-
-`DESTINATION_USER_ID`: (optional) The default user ID of the recipient. You can confirm this by following [this instructions](https://developers.line.biz/en/docs/messaging-api/getting-user-ids/#get-own-user-id).
115
+
-`DESTINATION_USER_ID`: (optional) The default user ID of the recipient. If the Tool's input does not include `user_id`, `DESTINATION_USER_ID` is required.
116
+
You can confirm this by following [this instructions](https://developers.line.biz/en/docs/messaging-api/getting-user-ids/#get-own-user-id).
0 commit comments