connect_social_account_urls
Generate URLs to link new social media accounts to RecurPost for automated content scheduling and management.
Instructions
Get URLs to connect new social media accounts to RecurPost
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:71-80 (handler)The tool 'connect_social_account_urls' is registered and implemented directly in src/index.ts using the MCP server.tool registration pattern. It calls the '/api/connect_social_account_urls' endpoint.
server.tool( "connect_social_account_urls", "Get URLs to connect new social media accounts to RecurPost", {}, async () => { try { return toolResult(await callAPI("/api/connect_social_account_urls")); } catch (e) { return toolResult({ error: String(e) }, true); }