signupgenius-mcp 1.0.0
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/README.md +82 -0
- package/dist/bundle.js +31526 -0
- package/dist/client.js +190 -0
- package/dist/config.js +75 -0
- package/dist/index.js +32 -0
- package/dist/session-login.js +126 -0
- package/dist/tools/_shared.js +4 -0
- package/dist/tools/groups.js +67 -0
- package/dist/tools/reports.js +29 -0
- package/dist/tools/signups.js +64 -0
- package/dist/tools/user.js +13 -0
- package/package.json +51 -0
- package/server.json +66 -0
package/server.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.chrischall/signupgenius-mcp",
|
|
4
|
+
"description": "SignUpGenius for Claude — sign-ups, slot reports, and groups. Works with a free account (session mode) or a Pro API key.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/chrischall/signupgenius-mcp",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "signupgenius-mcp",
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
},
|
|
18
|
+
"environmentVariables": [
|
|
19
|
+
{
|
|
20
|
+
"name": "SIGNUPGENIUS_EMAIL",
|
|
21
|
+
"description": "SignUpGenius login email (recommended). Pair with SIGNUPGENIUS_PASSWORD for session mode — works on free accounts. No SSO/2FA.",
|
|
22
|
+
"isRequired": false,
|
|
23
|
+
"format": "string"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "SIGNUPGENIUS_PASSWORD",
|
|
27
|
+
"description": "SignUpGenius password (recommended) — required iff SIGNUPGENIUS_EMAIL is set.",
|
|
28
|
+
"isRequired": false,
|
|
29
|
+
"format": "string",
|
|
30
|
+
"isSecret": true
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "SIGNUPGENIUS_USER_KEY",
|
|
34
|
+
"description": "SignUpGenius Pro API key (Pro Tools > API Management). Required only for slot REPORTS — Pro subscription needed.",
|
|
35
|
+
"isRequired": false,
|
|
36
|
+
"format": "string",
|
|
37
|
+
"isSecret": true
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "SIGNUPGENIUS_NAME",
|
|
41
|
+
"description": "Friendly account name used in startup logs.",
|
|
42
|
+
"isRequired": false,
|
|
43
|
+
"format": "string"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "SIGNUPGENIUS_BASE_URL",
|
|
47
|
+
"description": "Override the default JSON API base (v2/k for key mode, v3 for session mode).",
|
|
48
|
+
"isRequired": false,
|
|
49
|
+
"format": "string"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "SIGNUPGENIUS_LEGACY_BASE_URL",
|
|
53
|
+
"description": "Session mode only: override the host for legacy /SUGboxAPI.cfm calls. Defaults to https://www.signupgenius.com.",
|
|
54
|
+
"isRequired": false,
|
|
55
|
+
"format": "string"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "SIGNUPGENIUS_LOGIN_URL",
|
|
59
|
+
"description": "Session mode only: override the login-form host. Defaults to https://www.signupgenius.com.",
|
|
60
|
+
"isRequired": false,
|
|
61
|
+
"format": "string"
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
}
|