social_account_list
Retrieve connected social media accounts and their IDs to manage posting workflows and content scheduling.
Instructions
List all connected social media accounts with their IDs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:84-96 (handler)Registration and handler implementation for the 'social_account_list' tool, which calls the corresponding RecurPost API endpoint.
// 3. List connected social accounts server.tool( "social_account_list", "List all connected social media accounts with their IDs", {}, async () => { try { return toolResult(await callAPI("/api/social_account_list")); } catch (e) { return toolResult({ error: String(e) }, true); } } );