user_login
Verify API credentials to authenticate with RecurPost for social media management, scheduling posts, and organizing content libraries.
Instructions
Verify RecurPost API credentials
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:62-68 (handler)The user_login tool handler, which calls the RecurPost API's /api/user_login endpoint.
server.tool("user_login", "Verify RecurPost API credentials", {}, async () => { try { return toolResult(await callAPI("/api/user_login")); } catch (e) { return toolResult({ error: String(e) }, true); } });