Connects your AI assistant to Mindvalley's catalog of educational products, masterclasses, programs, and certifications. Exposes four read-only tools: products for subscription info and pricing, masterclasses for free course listings with registration links, programs for browsing content organized by category (Mind, Body, Soul, Career, etc.), and certifications for coaching credential details. All data is static and local, so queries return instantly without external API calls. Reach for this when you want Claude to help users explore Mindvalley's learning offerings, compare membership tiers, or recommend courses based on interests. Built with XMCP for automatic tool discovery and includes filtering parameters for targeted queries.
A Model Context Protocol (MCP) server that provides AI assistants with structured access to Mindvalley's educational offerings, including products, masterclasses, programs, and certifications.
# Install globally for easy access
npm install -g mindvalley-products-mcp
# Or install locally in your project
npm install mindvalley-products-mcp
~/Library/Application Support/Claude/claude_desktop_config.json on macOS):{
"mcpServers": {
"mindvalley-products": {
"command": "npx",
"args": ["mindvalley-products-mcp"]
}
}
}
Get information about Mindvalley's subscription products and pricing.
// Get all products
products();
// Get specific product
products({ name: "Mindvalley Membership" });
Response includes: Product names, descriptions, pricing (monthly/annual), checkout URLs
Access current Mindvalley masterclasses with registration links.
// Get all masterclasses
masterclasses();
// Filter by title
masterclasses({ title: "Superbrain" });
Response includes: Masterclass titles, hosts, descriptions, registration URLs
Browse Mindvalley's learning programs organized by category.
// Get all programs (by category)
programs();
// Get programs in specific category
programs({ category: "Mind" });
Available categories: Mind, Body, Soul, Career, Entrepreneurship, Relationships, Parenting
Information about Mindvalley's professional certifications.
// Get all certifications
certifications();
// Filter by name
certifications({ name: "Life Coach" });
Response includes: Certification names, providers, duration, requirements, signup URLs
Detailed setup guide: examples/claude-desktop/README.md
Integration instructions: examples/cursor/README.md
Programmatic usage example: examples/mcp-client/README.md
User: "I want to improve my memory and focus. What does Mindvalley offer?"
AI Response: Based on your interests, I found several relevant options:
Masterclass (Free): Superbrain Masterclass with Jim Kwik - "Unlock Your Memory & Brain Power"
Program: Superbrain by Jim Kwik - Full program for memory improvement
Also relevant: "Becoming Focused and Indistractable" by Nir Eyal in the Career category
User: "Compare Mindvalley Membership vs Membership Pro"
AI Response: Here's the comparison:
Mindvalley Membership ($499/year or $99/month)
- All-access subscription to 100+ quests and meditations
Mindvalley Membership Pro ($698/year only)
- Everything in Membership plus live coaching sessions
- Additional $199/year for live coaching access
User: "I want to become a certified coach. What options does Mindvalley have?"
AI Response: Mindvalley offers several coaching certifications through Evercoach:
Certified Life Coach (4 months) - $200 refundable deposit Certified Business Coach (4 months) - For corporate/executive coaching Certified Hypnotherapist (16 weeks) - Led by Paul McKenna
# Clone the repository
git clone https://github.com/mazemax/mindvalley-products-mcp.git
cd mindvalley-products-mcp
# Install dependencies
pnpm install
# Build the server
pnpm run build
# Run tests
pnpm test
# Start development mode (with hot-reload)
pnpm run dev
mindvalley-products-mcp/
├── src/
│ ├── tools/ # MCP tool implementations
│ │ ├── products.ts
│ │ ├── masterclasses.ts
│ │ ├── programs.ts
│ │ └── certifications.ts
│ └── resources/ # Static data source
│ └── mindvalley_data.json
├── examples/ # Integration examples
│ ├── claude-desktop/
│ ├── cursor/
│ └── mcp-client/
├── dist/ # Built server files
└── docs/ # Additional documentation
src/tools/schema, metadata, and default functionimport { z } from "zod";
import data from "../resources/mindvalley_data.json";
export const schema = {
filter: z.string().optional().describe("Filter parameter"),
};
export const metadata = {
name: "new-tool",
description: "Description of what the tool does",
annotations: {
title: "New Tool",
readOnlyHint: true,
destructiveHint: false,
idempotentHint: true,
},
};
export default async function newTool({ filter }: { filter?: string }) {
// Implementation
return { content: [{ type: "text", text: JSON.stringify(result) }] };
}
❌ "Command not found: mindvalley-products-mcp"
# Verify installation
npm list -g mindvalley-products-mcp
# Reinstall if needed
npm install -g mindvalley-products-mcp
❌ "Server failed to start"
# Check Node.js version (requires >=20.0.0)
node --version
# Test the server directly
npx mindvalley-products-mcp
# Check for error messages in AI assistant logs
❌ "Tools not available in AI assistant"
Test the server independently before integration:
# Test if server starts correctly
npx mindvalley-products-mcp
# Run the test suite
cd examples/mcp-client
node example.js
Verify your MCP configuration:
# Check Claude Desktop config
cat "~/Library/Application Support/Claude/claude_desktop_config.json" | jq
# Test configuration syntax
node -e "console.log(JSON.parse(require('fs').readFileSync('config.json')))"
We welcome contributions! Please see our Contributing Guide for details.
git checkout -b feature/amazing-featurepnpm testgit commit -m 'Add amazing feature'git push origin feature/amazing-featureAll data is sourced from publicly available Mindvalley information and stored in src/resources/mindvalley_data.json. The data includes:
Note: Data is static and updated manually. For the most current information, always verify with official Mindvalley sources.
For security concerns, please see our Security Policy.
This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ by Max Saad
This is an unofficial project and is not affiliated with or endorsed by Mindvalley.