get_dms_inbox
List the direct-message conversations in the signed-in Skool account's inbox, newest activity first. Returns per conversation the other participant's display name, profile handle and profile URL, the last message's text and time, whether it is unread and how many unread it holds, and whether the last message was sent by the account itself. Skool scopes messaging per account rather than per community, so this covers every community the account belongs to. Note: Skool's DM surface is a flyout with no addressable per-conversation URL (/chat, /chats and ?c= all redirect to the group page), so conversations expose the participant's profileUrl rather than a thread link. Throws if the account is signed out, rather than reporting an empty inbox.
Input
limit optionalHow many conversations to return, newest activity first.
Default: 25Output
count requiredNumber of conversations returned.
complete requiredTrue when the whole inbox was returned (not truncated by limit).
conversations requiredFAQ
List community posts
List the posts in a Skool community feed, newest first. Returns per post the title, body text, author name and handle, creation time, comment and upvote counts, whether it is pinned, the channel it was posted in, and a direct url. Takes the community slug as it appears in the URL (case-insensitive) and a limit, paging through the feed as needed. Reads the community's server-rendered data, so it makes no extra API calls. Fails with a clear message when the slug does not exist or the community is private to this account, rather than returning an empty list.
Delete your own Skool comment
Remove a comment you wrote from a Skool post, identified by the post URL and the text of the comment. Only your own comments can be removed. If the text matches more than one of your comments the run refuses rather than guessing which to remove, and if it matches none it says so without touching the post. Removal is confirmed by reloading the post and checking the comment is gone, not from the confirmation screen. This cannot be undone.
Get comments on a Skool post
Read the comments on a Skool community post, addressed by the post's URL. Returns each comment with its author name and handle, profile link, text, time, upvote count, and how it sits in the thread — whether it is a reply and which comment it answers — plus a flag marking the comments written by the signed-in account. Replies are included and keep their position under the comment they answer. Reports the post's own comment total alongside the number returned, and says plainly when a thread is too large to return in full rather than trimming it silently.
