plurk_get_alerts
Retrieve recent alert events from Plurk using provided credentials to monitor account notifications and activity updates.
Instructions
Return recent normalized alert events for the credentials supplied in this call.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| credentials | Yes | ||
| limit | No |
Implementation Reference
- src/transports/mcp/toolCatalog.ts:40-43 (handler)The handler for plurk_get_alerts that fetches alerts from the Plurk application and limits the result set.
execute: async ({ credentials, limit }) => { const alerts = await application.getAlerts("mcp", credentials); return alerts.slice(0, limit); },