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
+2-16Lines changed: 2 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -56,26 +56,12 @@
56
56
- Only available for verified or premium accounts.
57
57
- Some user IDs may not be included due to privacy or user actions (see [documents](https://developers.line.biz/en/reference/messaging-api/#get-follower-ids-obtainable-ids) for details).
If you're using Node.js, install required dependencies and build line-bot-mcp-server. Skip this step if using Docker:
74
-
75
-
```bash
76
-
cd line-bot-mcp-server && npm install && npm run build
77
-
```
78
-
79
65
### Step 1: Create LINE Official Account
80
66
81
67
This MCP server utilizes a LINE Official Account. If you do not have one, please create it by following [this instructions](https://developers.line.biz/en/docs/messaging-api/getting-started/#create-oa).
"Gets the list of User IDs of users who have added your LINE Official Account as a friend.",
237
-
{
238
-
start: z
239
-
.string()
240
-
.optional()
241
-
.describe(
242
-
"Value of the continuation token found in the next property of the JSON object returned in the response. Include this parameter to get the next array of user IDs. If omitted, fetches from the beginning.",
243
-
),
244
-
limit: z
245
-
.int()
246
-
.min(1)
247
-
.max(1000)
248
-
.default(300)
249
-
.describe(
250
-
"Maximum number of user IDs to retrieve (1-1000). Default is 300.",
0 commit comments