Skool Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Skool Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP (Model Context Protocol) server for interacting with Skool.com communities.
Skool doesn't have a public API, so this MCP uses authenticated HTTP requests to Skool's internal API endpoints (reverse-engineered from the web app).
cd /mnt/c/projects/skool-mcp # or wherever you cloned it
npm install
npm run buildCreate ~/.config/skool-mcp/config.json:
{
"cookies": "your-skool-session-cookies-here",
"defaultCommunity": "ai-agent-academy-6994",
"baseUrl": "https://www.skool.com"
}Getting cookies: Open Skool in Chrome → DevTools → Application → Cookies → copy the auth_token value. The cookies field should be: auth_token=YOUR_JWT_HERE
Add to your .mcp.json (in your project root or ~/.claude/.mcp.json for global):
{
"mcpServers": {
"skool": {
"command": "node",
"args": ["/mnt/c/projects/skool-mcp/dist/index.js"],
"env": {}
}
}
}mcporter add skool --command "node /mnt/c/projects/skool-mcp/dist/index.js" --transport stdioThen call tools via:
mcporter call skool "skool.request" method="GET" path="/api/v1/..."Uses session cookies from an authenticated Skool session. The auth_token JWT is httpOnly and long-lived (expires ~1 year).
skool.request — Make arbitrary authenticated requests to Skool (for API exploration)skool.community.info — Get community details (name, description, member count, settings)skool.members.list — List members of a communityskool.members.pending — List pending membership requestsskool.members.approve — Approve a pending memberskool.members.reject — Reject a pending memberskool.posts.list — List posts in a community (with category filter, pagination)skool.posts.get — Get a specific post with commentsskool.posts.create — Create a new postskool.posts.comment — Comment on a postskool.courses.list — List coursesskool.lessons.list — List lessons in a courseskool.notifications — Get recent notifications/_next/data/{buildId}/...). The buildId is fetched dynamically.api2.skool.com REST endpoints.User-Agent header is required (CloudFront blocks bare requests with 403).API-DISCOVERY.md for detailed endpoint documentation and response shapes.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.