@chrischall/eventbrite-mcp 0.1.3 → 0.2.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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/dist/bundle.js +21 -10
- package/dist/version.js +1 -1
- package/package.json +2 -2
- package/server.json +2 -2
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
},
|
|
8
8
|
"metadata": {
|
|
9
9
|
"description": "MCP server for Eventbrite — your tickets and orders, organizer data, and public event discovery",
|
|
10
|
-
"version": "0.
|
|
10
|
+
"version": "0.2.0"
|
|
11
11
|
},
|
|
12
12
|
"plugins": [
|
|
13
13
|
{
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"displayName": "Eventbrite",
|
|
16
16
|
"source": "./",
|
|
17
17
|
"description": "MCP server for Eventbrite — tickets, orders, organizer data, and public event search. Account tools use a personal API token; discovery search routes through the user's signed-in eventbrite.com tab via the fetchproxy bridge, reusing their authenticated session.",
|
|
18
|
-
"version": "0.
|
|
18
|
+
"version": "0.2.0",
|
|
19
19
|
"author": {
|
|
20
20
|
"name": "Chris Hall"
|
|
21
21
|
},
|
package/dist/bundle.js
CHANGED
|
@@ -3322,8 +3322,8 @@ var require_utils = __commonJS({
|
|
|
3322
3322
|
var HOST_DELIMS = { "@": "%40", "/": "%2F", "?": "%3F", "#": "%23", ":": "%3A" };
|
|
3323
3323
|
var HOST_DELIM_RE = /[@/?#:]/g;
|
|
3324
3324
|
var HOST_DELIM_NO_COLON_RE = /[@/?#]/g;
|
|
3325
|
-
function reescapeHostDelimiters(host,
|
|
3326
|
-
const re =
|
|
3325
|
+
function reescapeHostDelimiters(host, isIP2) {
|
|
3326
|
+
const re = isIP2 ? HOST_DELIM_NO_COLON_RE : HOST_DELIM_RE;
|
|
3327
3327
|
re.lastIndex = 0;
|
|
3328
3328
|
return host.replace(re, (ch) => HOST_DELIMS[ch]);
|
|
3329
3329
|
}
|
|
@@ -3812,7 +3812,7 @@ var require_fast_uri = __commonJS({
|
|
|
3812
3812
|
fragment: void 0
|
|
3813
3813
|
};
|
|
3814
3814
|
let malformedAuthorityOrPort = false;
|
|
3815
|
-
let
|
|
3815
|
+
let isIP2 = false;
|
|
3816
3816
|
if (options.reference === "suffix") {
|
|
3817
3817
|
if (options.scheme) {
|
|
3818
3818
|
uri = options.scheme + ":" + uri;
|
|
@@ -3861,9 +3861,9 @@ var require_fast_uri = __commonJS({
|
|
|
3861
3861
|
if (ipv4result === false) {
|
|
3862
3862
|
const ipv6result = normalizeIPv6(parsed.host);
|
|
3863
3863
|
parsed.host = ipv6result.host.toLowerCase();
|
|
3864
|
-
|
|
3864
|
+
isIP2 = ipv6result.isIPV6;
|
|
3865
3865
|
} else {
|
|
3866
|
-
|
|
3866
|
+
isIP2 = true;
|
|
3867
3867
|
}
|
|
3868
3868
|
}
|
|
3869
3869
|
if (parsed.scheme === void 0 && parsed.userinfo === void 0 && parsed.host === void 0 && parsed.port === void 0 && parsed.query === void 0 && !parsed.path) {
|
|
@@ -3880,7 +3880,7 @@ var require_fast_uri = __commonJS({
|
|
|
3880
3880
|
}
|
|
3881
3881
|
const schemeHandler = getSchemeHandler(options.scheme || parsed.scheme);
|
|
3882
3882
|
if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
|
|
3883
|
-
if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) &&
|
|
3883
|
+
if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP2 === false && nonSimpleDomain(parsed.host)) {
|
|
3884
3884
|
try {
|
|
3885
3885
|
parsed.host = new URL("http://" + parsed.host).hostname;
|
|
3886
3886
|
} catch (e) {
|
|
@@ -3894,7 +3894,7 @@ var require_fast_uri = __commonJS({
|
|
|
3894
3894
|
parsed.scheme = unescape(parsed.scheme);
|
|
3895
3895
|
}
|
|
3896
3896
|
if (parsed.host !== void 0) {
|
|
3897
|
-
parsed.host = reescapeHostDelimiters(unescape(parsed.host),
|
|
3897
|
+
parsed.host = reescapeHostDelimiters(unescape(parsed.host), isIP2);
|
|
3898
3898
|
}
|
|
3899
3899
|
}
|
|
3900
3900
|
if (parsed.path) {
|
|
@@ -8564,7 +8564,7 @@ var require_permessage_deflate = __commonJS({
|
|
|
8564
8564
|
acceptAsServer(offers) {
|
|
8565
8565
|
const opts = this._options;
|
|
8566
8566
|
const accepted = offers.find((params) => {
|
|
8567
|
-
if (opts.serverNoContextTakeover === false && params.server_no_context_takeover || params.server_max_window_bits && (opts.serverMaxWindowBits === false || typeof opts.serverMaxWindowBits === "number" && opts.serverMaxWindowBits > params.server_max_window_bits) || typeof opts.clientMaxWindowBits === "number" && !params.client_max_window_bits) {
|
|
8567
|
+
if (opts.serverNoContextTakeover === false && params.server_no_context_takeover || params.server_max_window_bits && (opts.serverMaxWindowBits === false || typeof opts.serverMaxWindowBits === "number" && opts.serverMaxWindowBits > params.server_max_window_bits) || typeof opts.clientMaxWindowBits === "number" && (typeof params.client_max_window_bits === "number" ? opts.clientMaxWindowBits > params.client_max_window_bits : !params.client_max_window_bits)) {
|
|
8568
8568
|
return false;
|
|
8569
8569
|
}
|
|
8570
8570
|
return true;
|
|
@@ -12836,6 +12836,7 @@ var init_classify_bridge_error = __esm({
|
|
|
12836
12836
|
});
|
|
12837
12837
|
|
|
12838
12838
|
// node_modules/@fetchproxy/server/dist/ws-server.js
|
|
12839
|
+
import { isIP } from "node:net";
|
|
12839
12840
|
function envWsPort() {
|
|
12840
12841
|
const raw = process.env.FETCHPROXY_WS_PORT;
|
|
12841
12842
|
if (raw === void 0 || raw.trim() === "")
|
|
@@ -12847,6 +12848,15 @@ function envWsPort() {
|
|
|
12847
12848
|
return void 0;
|
|
12848
12849
|
return port;
|
|
12849
12850
|
}
|
|
12851
|
+
function envWsHost() {
|
|
12852
|
+
const raw = process.env.FETCHPROXY_WS_HOST;
|
|
12853
|
+
if (raw === void 0)
|
|
12854
|
+
return void 0;
|
|
12855
|
+
const host = raw.trim();
|
|
12856
|
+
if (host === "" || isIP(host) === 0)
|
|
12857
|
+
return void 0;
|
|
12858
|
+
return host;
|
|
12859
|
+
}
|
|
12850
12860
|
function protocolErrorFrom(error51) {
|
|
12851
12861
|
if (SCOPE_REJECTION.test(error51))
|
|
12852
12862
|
return new FetchproxyScopeError(error51);
|
|
@@ -13106,7 +13116,7 @@ var init_ws_server = __esm({
|
|
|
13106
13116
|
}
|
|
13107
13117
|
this.opts = {
|
|
13108
13118
|
port: opts.port ?? envWsPort() ?? 37149,
|
|
13109
|
-
host: opts.host ?? "127.0.0.1",
|
|
13119
|
+
host: opts.host ?? envWsHost() ?? "127.0.0.1",
|
|
13110
13120
|
serverName: opts.serverName,
|
|
13111
13121
|
version: opts.version,
|
|
13112
13122
|
domains: [...opts.domains],
|
|
@@ -13392,6 +13402,7 @@ var init_ws_server = __esm({
|
|
|
13392
13402
|
return {
|
|
13393
13403
|
role: this.role,
|
|
13394
13404
|
port: this.opts.port,
|
|
13405
|
+
host: this.opts.host,
|
|
13395
13406
|
serverVersion: this.opts.version,
|
|
13396
13407
|
fetchTimeoutMs: this.opts.fetchTimeoutMs ?? 0,
|
|
13397
13408
|
bridgeReviveDelayMs: this.opts.bridgeReviveDelayMs ?? 0,
|
|
@@ -39767,7 +39778,7 @@ var pageSchema = {
|
|
|
39767
39778
|
init_errors();
|
|
39768
39779
|
|
|
39769
39780
|
// src/version.ts
|
|
39770
|
-
var VERSION = "0.
|
|
39781
|
+
var VERSION = "0.2.0";
|
|
39771
39782
|
|
|
39772
39783
|
// src/client.ts
|
|
39773
39784
|
import { dirname, join } from "path";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.2.0'; // x-release-please-version
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chrischall/eventbrite-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"mcpName": "io.github.chrischall/eventbrite-mcp",
|
|
5
5
|
"description": "Eventbrite MCP server for Claude — developed and maintained by AI (Claude Code)",
|
|
6
6
|
"author": "Claude Code (AI) <https://www.anthropic.com/claude>",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@chrischall/mcp-utils": "^0.15.0",
|
|
49
|
-
"@fetchproxy/server": "^2.
|
|
49
|
+
"@fetchproxy/server": "^2.2.0",
|
|
50
50
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
51
51
|
"dotenv": "^17.4.0",
|
|
52
52
|
"zod": "^4.4.2"
|
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/chrischall/eventbrite-mcp",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.
|
|
9
|
+
"version": "0.2.0",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "@chrischall/eventbrite-mcp",
|
|
14
|
-
"version": "0.
|
|
14
|
+
"version": "0.2.0",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
},
|