Skool MCP Server
MCP server for interacting with Skool.com communities, enabling community management, post operations, member management, and course access through natural language.
README
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).
Setup
1. Install & Build
cd /mnt/c/projects/skool-mcp # or wherever you cloned it
npm install
npm run build
2. 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 stdio
Then 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.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.