Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update the README.md
  • Loading branch information
4geru committed May 29, 2025
commit 5a0c737e26d0eaccb3cf5be44a444a0318e3445e
26 changes: 24 additions & 2 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,33 @@ LINE公式アカウントとAI Agentを接続するために、LINE Messaging AP
5. **get_profile**
- LINEユーザーの詳細なプロフィール情報を取得する。表示名、プロフィール画像URL、ステータスメッセージ、言語を取得できる。
- **入力:**
- `user_id` (string?): プロフィールを取得したいユーザーのユーザーID。デフォルトはDESTINATION_USER_ID。`user_id`または`DESTINATION_USER_ID`のどちらか一方は必ず設定する必要があります。=======
- `user_id` (string?): プロフィールを取得したいユーザーのユーザーID。デフォルトはDESTINATION_USER_ID。`user_id`または`DESTINATION_USER_ID`のどちらか一方は必ず設定する必要があります。
6. **get_message_quota**
- LINE公式アカウントのメッセージ容量と消費量を取得します。月間メッセージ制限と現在の使用量が表示されます。
- **入力:**
- なし
7. **get_rich_menu_list**
- LINE公式アカウントに登録されているリッチメニューの一覧を取得する。
- **入力:**
- なし
8. **delete_rich_menu**
- LINE公式アカウントからリッチメニューを削除する。
- **入力:**
- `richMenuId` (string): 削除するリッチメニューのID。
9. **set_rich_menu_image**
- LINE公式アカウントのリッチメニューの画像を更新する。
- **入力:**
- `richMenuId` (string): 更新するリッチメニューのID。
- `projectPath` (string): プロジェクトのパス。
- `imagePath` (string): 更新する画像のパス。`@`プレフィックスを使用してプロジェクトルートからの相対パスを指定できます。
10. **set_rich_menu_default**
- リッチメニューをデフォルトとして設定する。
- **入力:**
- `richMenuId` (string): デフォルトとして設定するリッチメニューのID。
11. **cancel_rich_menu_default**
- デフォルトのリッチメニューを解除する。
- **入力:**
- なし

## インストール (npxを使用)

Expand Down Expand Up @@ -132,4 +154,4 @@ Claude DesktopやClaudeなどのAI Agentに次の設定を追加してくださ
}
}
}
```
```
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,28 @@
- Get the message quota and consumption of the LINE Official Account. This shows the monthly message limit and current usage.
- **Inputs:**
- None
7. **get_rich_menu_list**
- Get the list of rich menus associated with your LINE Official Account.
- **Inputs:**
- None
8. **delete_rich_menu**
- Delete a rich menu from your LINE Official Account.
- **Inputs:**
- `richMenuId` (string): The ID of the rich menu to delete.
9. **set_rich_menu_image**
- Update a rich menu associated with your LINE Official Account.
- **Inputs:**
- `richMenuId` (string): The ID of the rich menu to update.
- `projectPath` (string): The path of the project.
- `imagePath` (string): The path of the image to update. Use `@` prefix to specify a path relative to the project root.
10. **set_rich_menu_default**
- Set a rich menu as the default rich menu.
- **Inputs:**
- `richMenuId` (string): The ID of the rich menu to set as default.
11. **cancel_rich_menu_default**
- Cancel the default rich menu.
- **Inputs:**
- None

## Installation (Using npx)

Expand Down