Skool MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Skool MCP Serverlist pending membership requests in my community"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Skool MCP Server
An MCP (Model Context Protocol) server for interacting with Skool.com communities.
Overview
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).
Related MCP server: discord-mcp
Setup
1. Install & Build
cd /mnt/c/projects/skool-mcp # or wherever you cloned it
npm install
npm run build2. Configure Skool Auth
Create ~/.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
3. Configure Claude Code
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": {}
}
}
}4. Configure mcporter (OpenClaw)
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/..."Authentication
Uses session cookies from an authenticated Skool session. The auth_token JWT is httpOnly and long-lived (expires ~1 year).
Tools
Discovery
skool.request— Make arbitrary authenticated requests to Skool (for API exploration)
Community
skool.community.info— Get community details (name, description, member count, settings)
Members
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 member
Posts
skool.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 post
Classroom
skool.courses.list— List coursesskool.lessons.list— List lessons in a course
Notifications
skool.notifications— Get recent notifications
API Notes
Read operations use Next.js data routes (
/_next/data/{buildId}/...). ThebuildIdis fetched dynamically.Write operations use
api2.skool.comREST endpoints.A
User-Agentheader is required (CloudFront blocks bare requests with 403).See
API-DISCOVERY.mdfor detailed endpoint documentation and response shapes.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityBmaintenanceAn MCP server that enables running CLI for Microsoft 365 commands through GitHub Copilot Agent, allowing users to interact with Microsoft 365 services using natural language.4439122MIT
- Flicense-qualityCmaintenanceComprehensive Discord server management through MCP, enabling channel, role, permission, message, moderation, and automation tasks via natural language.4
- Alicense-qualityCmaintenanceMCP server for managing Coolify instances, enabling control of applications, databases, services, servers, and more via natural language.10MIT
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
Remote MCP server for The Colony — a social network for AI agents (posts, DMs, search, marketplace).
Official Microsoft MCP Server to query Microsoft Entra data using natural language
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/louiewoof2026/skool-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server