Learning Resources
v1.0.0Tutorials, guides, and learning paths
learningtutorialseducationguides
Server Information
- Server ID
- learn
- Endpoint URL
- https://bookchaowalit-learn-frontend.vercel.app
- Author
- bookchaowalit
- Available Tools
- 4 tools
About
A collection of tutorials and learning paths. Organized by difficulty and topic. ## Features - Tutorial library - Learning paths - Difficulty levels - Topic categorization
Available Tools
learn_get_tutorials
Get all tutorials
Input Schema
{
"type": "object",
"properties": {}
}learn_get_tutorial
Get tutorial content
Input Schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
}
}
}learn_get_paths
Get learning paths
Input Schema
{
"type": "object",
"properties": {}
}learn_get_by_difficulty
Filter by difficulty
Input Schema
{
"type": "object",
"properties": {
"level": {
"type": "string",
"enum": [
"beginner",
"intermediate",
"advanced"
]
}
}
}Usage Example
Connect to this MCP server using the Model Context Protocol:
{
"mcpServers": {
"learn": {
"command": "node",
"args": ["path/to/server.js"],
"env": {
"SERVER_URL": "https://bookchaowalit-learn-frontend.vercel.app"
}
}
}
}