yupno-mcp-server 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +26 -9
- package/package.json +10 -2
package/index.js
CHANGED
|
@@ -17,18 +17,35 @@ server.tool(
|
|
|
17
17
|
"create_event",
|
|
18
18
|
`Create a new event on Yupno. Returns admin URL (for managing) and guest URL (for sharing).
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
20
|
+
IMPORTANT - ALWAYS INCLUDE:
|
|
21
|
+
- title: Short (2-4 words), NO emojis
|
|
22
|
+
- eventDate: When the event starts
|
|
23
|
+
- location: Where it's happening
|
|
24
|
+
- description: 2-3 sentences about the event (what to expect, dress code, etc.)
|
|
25
|
+
|
|
26
|
+
DESIGN RULES:
|
|
27
|
+
- Fonts: Use Poppins, Inter, Playfair Display, or Montserrat. AVOID Lobster/Pacifico
|
|
23
28
|
- Colors: Dark bg (#1a1a2e) needs light text (#ffffff). Light bg (#faf7f2) needs dark text (#2d3436)
|
|
24
|
-
-
|
|
29
|
+
- Background images: Always set backgroundOverlay 0.5-0.7 for readability
|
|
30
|
+
|
|
31
|
+
EXAMPLE:
|
|
32
|
+
{
|
|
33
|
+
"title": "Summer Beats",
|
|
34
|
+
"eventDate": "2024-06-15T20:00:00",
|
|
35
|
+
"location": "The Rooftop, 123 Main St",
|
|
36
|
+
"description": "Join us for an unforgettable night of music and dancing. Dress code: smart casual.",
|
|
37
|
+
"theme": { "primaryColor": "#ff6b6b", "backgroundColor": "#1a1a2e", "textColor": "#ffffff", "fontFamily": "Poppins" }
|
|
38
|
+
}`,
|
|
25
39
|
{
|
|
26
|
-
title: z.string().describe("Event title - keep SHORT (2-4 words), NO emojis. Good: 'Game Night', '
|
|
27
|
-
eventDate: z.string().describe("Start date/time in ISO 8601 format"),
|
|
40
|
+
title: z.string().describe("Event title - keep SHORT (2-4 words), NO emojis. Good: 'Game Night', 'Summer Beats'"),
|
|
41
|
+
eventDate: z.string().describe("Start date/time in ISO 8601 format (REQUIRED)"),
|
|
28
42
|
endDate: z.string().optional().describe("End date/time in ISO 8601 format"),
|
|
29
43
|
timezone: z.string().optional().describe("IANA timezone (e.g., America/New_York)"),
|
|
30
|
-
location: z.string().optional().describe("Physical address or venue name"),
|
|
31
|
-
description: z.string().optional().describe("
|
|
44
|
+
location: z.string().optional().describe("Physical address or venue name (strongly recommended)"),
|
|
45
|
+
description: z.string().optional().describe("ALWAYS INCLUDE: 2-3 sentences about the event. What to expect, dress code, vibe. Emojis OK sparingly."),
|
|
46
|
+
organizerName: z.string().optional().describe("Name of the host/organizer"),
|
|
47
|
+
showGuestList: z.boolean().optional().describe("Show who's attending (default false)"),
|
|
48
|
+
collectEmail: z.boolean().optional().describe("Ask for guest email (default false)"),
|
|
32
49
|
theme: z.object({
|
|
33
50
|
primaryColor: z.string().optional().describe("Hex color for buttons. Should contrast with backgroundColor"),
|
|
34
51
|
accentColor: z.string().optional().describe("Hex color for secondary elements"),
|
|
@@ -36,7 +53,7 @@ DESIGN RULES (follow these for professional results):
|
|
|
36
53
|
textColor: z.string().optional().describe("Hex color for text. Use #ffffff on dark bg, #1a1a1a on light bg"),
|
|
37
54
|
fontFamily: z.string().optional().describe("Google Font. Recommended: Poppins, Inter, Playfair Display, Montserrat. AVOID: Lobster, Pacifico"),
|
|
38
55
|
backgroundUrl: z.string().optional().describe("HTTPS URL for background image (use Unsplash)"),
|
|
39
|
-
backgroundOverlay: z.number().min(0).max(1).optional().describe("Dark overlay 0.5-0.7 for readability with
|
|
56
|
+
backgroundOverlay: z.number().min(0).max(1).optional().describe("Dark overlay 0.5-0.7 for readability (REQUIRED with backgroundUrl)"),
|
|
40
57
|
}).optional().describe("Visual theme - see design rules above"),
|
|
41
58
|
},
|
|
42
59
|
async (args) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yupno-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "MCP server for creating and managing Yupno events with Claude Desktop",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -13,7 +13,15 @@
|
|
|
13
13
|
"scripts": {
|
|
14
14
|
"start": "node index.js"
|
|
15
15
|
},
|
|
16
|
-
"keywords": [
|
|
16
|
+
"keywords": [
|
|
17
|
+
"mcp",
|
|
18
|
+
"yupno",
|
|
19
|
+
"events",
|
|
20
|
+
"rsvp",
|
|
21
|
+
"claude",
|
|
22
|
+
"anthropic",
|
|
23
|
+
"model-context-protocol"
|
|
24
|
+
],
|
|
17
25
|
"author": "Yupno",
|
|
18
26
|
"license": "MIT",
|
|
19
27
|
"repository": {
|