streamable-httpupdated 22d ago
A remote MCP (Model Context Protocol) server that lets AI agents search transcribed painting lessons from mypaintingclub.com.
What can you do with My Painting Club โ Painting Lessons?
My Painting Club โ Painting Lesson Knowledge Base (MCP Server)
A remote MCP (Model Context Protocol) server that lets AI agents search transcribed painting lessons from mypaintingclub.com.
What it does
The search_painting_lessons tool answers natural-language painting technique questions using real transcribed lesson content. Every result includes:
- Answer text โ the relevant passage from the lesson
- Lesson title and sales page URL on mypaintingclub.com
- Vimeo deep link โ a timestamped URL that seeks to the exact moment in the video
Topics covered: colour mixing, edges, composition, value, brushwork, oils, acrylics.
Connect via MCP
Server URL: https://mypaintingclub.com/kb/mcp
Protocol: Streamable HTTP (MCP 2025-03-26)
Auth: None required
Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"mpc-painting-lessons": {
"type": "streamable-http",
"url": "https://mypaintingclub.com/kb/mcp"
}
}
}
Cursor / other MCP clients
Add https://mypaintingclub.com/kb/mcp as a Streamable HTTP server.
Auto-discovery endpoints
| Path | Format |
|---|---|
/.well-known/mcp.json |
MCP auto-discovery |
/.well-known/ai-plugin.json |
OpenAI plugin manifest |
/kb/openapi.json |
OpenAPI spec |
/kb/docs |
API docs |
/kb/health |
Health check |
Rate limits
30 requests/minute per IP ยท 500 queries/day global (resets midnight UTC)
Tool reference
search_painting_lessons
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
question |
string | โ | โ | Natural-language painting technique question |
top_k |
integer | 5 | Max results (1โ20) |
Example:
{ "question": "how do I paint soft edges in oils", "top_k": 3 }
Links
- mypaintingclub.com โ the full painting school
- Smithery listing
- /kb/docs โ API documentation
- support@mypaintingclub.com
Official MCP Registry
Listed as io.github.1nzpainter/painting-lessons on the Official MCP Registry.
Install
Add My Painting Club โ Painting Lessons to your client. Pick the one you use.
claude mcp add --transport http my-painting-club-painting-lessons https://mypaintingclub.com/kb/mcpcodex mcp add my-painting-club-painting-lessons --url https://mypaintingclub.com/kb/mcp{
"mcpServers": {
"my-painting-club-painting-lessons": {
"url": "https://mypaintingclub.com/kb/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"my-painting-club-painting-lessons": {
"type": "http",
"url": "https://mypaintingclub.com/kb/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"my-painting-club-painting-lessons": {
"url": "https://mypaintingclub.com/kb/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"my-painting-club-painting-lessons": {
"serverUrl": "https://mypaintingclub.com/kb/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 15 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Aug 17, 2026 |