devbcn-mcp-server 0.0.0-202512041739 → 0.0.0-202512051145
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/bun.lock +2 -2
- package/dist/index.js +13 -5
- package/package.json +2 -2
package/bun.lock
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
"": {
|
|
6
6
|
"name": "devbcn-mcp-server",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@modelcontextprotocol/sdk": "1.24.
|
|
8
|
+
"@modelcontextprotocol/sdk": "1.24.2",
|
|
9
9
|
"express": "5.2.1",
|
|
10
10
|
},
|
|
11
11
|
},
|
|
12
12
|
},
|
|
13
13
|
"packages": {
|
|
14
|
-
"@modelcontextprotocol/sdk": ["@modelcontextprotocol/sdk@1.24.
|
|
14
|
+
"@modelcontextprotocol/sdk": ["@modelcontextprotocol/sdk@1.24.2", "", { "dependencies": { "ajv": "^8.17.1", "ajv-formats": "^3.0.1", "content-type": "^1.0.5", "cors": "^2.8.5", "cross-spawn": "^7.0.5", "eventsource": "^3.0.2", "eventsource-parser": "^3.0.0", "express": "^5.0.1", "express-rate-limit": "^7.5.0", "jose": "^6.1.1", "pkce-challenge": "^5.0.0", "raw-body": "^3.0.0", "zod": "^3.25 || ^4.0", "zod-to-json-schema": "^3.25.0" }, "peerDependencies": { "@cfworker/json-schema": "^4.1.1" }, "optionalPeers": ["@cfworker/json-schema"] }, "sha512-hS/kzSfchqzvUeJUsdiDHi84/kNhLIZaZ6coGQVwbYIelOBbcAwUohUfaQTLa1MvFOK/jbTnGFzraHSFwB7pjQ=="],
|
|
15
15
|
|
|
16
16
|
"accepts": ["accepts@2.0.0", "", { "dependencies": { "mime-types": "^3.0.0", "negotiator": "^1.0.0" } }, "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng=="],
|
|
17
17
|
|
package/dist/index.js
CHANGED
|
@@ -29684,9 +29684,6 @@ var require_dist2 = __commonJS((exports, module) => {
|
|
|
29684
29684
|
});
|
|
29685
29685
|
|
|
29686
29686
|
// src/index.js
|
|
29687
|
-
var import_express2 = __toESM(require_express2(), 1);
|
|
29688
|
-
|
|
29689
|
-
// node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js
|
|
29690
29687
|
var import_express = __toESM(require_express2(), 1);
|
|
29691
29688
|
|
|
29692
29689
|
// node_modules/zod/v3/helpers/util.js
|
|
@@ -46538,12 +46535,18 @@ var Base64Schema = string2().refine((val) => {
|
|
|
46538
46535
|
var BlobResourceContentsSchema = ResourceContentsSchema.extend({
|
|
46539
46536
|
blob: Base64Schema
|
|
46540
46537
|
});
|
|
46538
|
+
var AnnotationsSchema = object2({
|
|
46539
|
+
audience: array(_enum2(["user", "assistant"])).optional(),
|
|
46540
|
+
priority: number2().min(0).max(1).optional(),
|
|
46541
|
+
lastModified: exports_iso2.datetime({ offset: true }).optional()
|
|
46542
|
+
});
|
|
46541
46543
|
var ResourceSchema = object2({
|
|
46542
46544
|
...BaseMetadataSchema.shape,
|
|
46543
46545
|
...IconsSchema.shape,
|
|
46544
46546
|
uri: string2(),
|
|
46545
46547
|
description: optional(string2()),
|
|
46546
46548
|
mimeType: optional(string2()),
|
|
46549
|
+
annotations: AnnotationsSchema.optional(),
|
|
46547
46550
|
_meta: optional(looseObject({}))
|
|
46548
46551
|
});
|
|
46549
46552
|
var ResourceTemplateSchema = object2({
|
|
@@ -46552,6 +46555,7 @@ var ResourceTemplateSchema = object2({
|
|
|
46552
46555
|
uriTemplate: string2(),
|
|
46553
46556
|
description: optional(string2()),
|
|
46554
46557
|
mimeType: optional(string2()),
|
|
46558
|
+
annotations: AnnotationsSchema.optional(),
|
|
46555
46559
|
_meta: optional(looseObject({}))
|
|
46556
46560
|
});
|
|
46557
46561
|
var ListResourcesRequestSchema = PaginatedRequestSchema.extend({
|
|
@@ -46626,18 +46630,21 @@ var GetPromptRequestSchema = RequestSchema.extend({
|
|
|
46626
46630
|
var TextContentSchema = object2({
|
|
46627
46631
|
type: literal("text"),
|
|
46628
46632
|
text: string2(),
|
|
46633
|
+
annotations: AnnotationsSchema.optional(),
|
|
46629
46634
|
_meta: record(string2(), unknown()).optional()
|
|
46630
46635
|
});
|
|
46631
46636
|
var ImageContentSchema = object2({
|
|
46632
46637
|
type: literal("image"),
|
|
46633
46638
|
data: Base64Schema,
|
|
46634
46639
|
mimeType: string2(),
|
|
46640
|
+
annotations: AnnotationsSchema.optional(),
|
|
46635
46641
|
_meta: record(string2(), unknown()).optional()
|
|
46636
46642
|
});
|
|
46637
46643
|
var AudioContentSchema = object2({
|
|
46638
46644
|
type: literal("audio"),
|
|
46639
46645
|
data: Base64Schema,
|
|
46640
46646
|
mimeType: string2(),
|
|
46647
|
+
annotations: AnnotationsSchema.optional(),
|
|
46641
46648
|
_meta: record(string2(), unknown()).optional()
|
|
46642
46649
|
});
|
|
46643
46650
|
var ToolUseContentSchema = object2({
|
|
@@ -46650,6 +46657,7 @@ var ToolUseContentSchema = object2({
|
|
|
46650
46657
|
var EmbeddedResourceSchema = object2({
|
|
46651
46658
|
type: literal("resource"),
|
|
46652
46659
|
resource: union([TextResourceContentsSchema, BlobResourceContentsSchema]),
|
|
46660
|
+
annotations: AnnotationsSchema.optional(),
|
|
46653
46661
|
_meta: record(string2(), unknown()).optional()
|
|
46654
46662
|
});
|
|
46655
46663
|
var ResourceLinkSchema = ResourceSchema.extend({
|
|
@@ -51126,8 +51134,8 @@ server.registerResource("devbcn-2025-schedule", `${RESOURCE_PREFIX}schedule`, {
|
|
|
51126
51134
|
}]
|
|
51127
51135
|
}));
|
|
51128
51136
|
try {
|
|
51129
|
-
const expressApp =
|
|
51130
|
-
expressApp.use(
|
|
51137
|
+
const expressApp = import_express.default();
|
|
51138
|
+
expressApp.use(import_express.default.json());
|
|
51131
51139
|
expressApp.post("/mcp", async (req, res) => {
|
|
51132
51140
|
const httpTransport = new StreamableHTTPServerTransport({
|
|
51133
51141
|
sessionIdGenerator: undefined
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devbcn-mcp-server",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-202512051145",
|
|
4
4
|
"homepage": "https://github.com/marcnuri-demo/blog-tutorials",
|
|
5
5
|
"licenese": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"watch": "bun run --watch src/index.js"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@modelcontextprotocol/sdk": "1.24.
|
|
17
|
+
"@modelcontextprotocol/sdk": "1.24.2",
|
|
18
18
|
"express": "5.2.1"
|
|
19
19
|
},
|
|
20
20
|
"repository": {
|