@youdotcom-oss/mcp 1.3.3 → 1.3.4
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/AGENTS.md +59 -31
- package/bin/stdio.js +12375 -6517
- package/package.json +5 -5
- package/src/contents/contents.schemas.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@youdotcom-oss/mcp",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
4
4
|
"description": "You.com API Model Context Protocol Server",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"zod": "^3.25.76"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@biomejs/biome": "2.3.
|
|
79
|
+
"@biomejs/biome": "2.3.8",
|
|
80
80
|
"@commitlint/cli": "^20.1.0",
|
|
81
81
|
"@commitlint/config-conventional": "^20.0.0",
|
|
82
82
|
"@eslint/js": "9.39.1",
|
|
@@ -87,8 +87,8 @@
|
|
|
87
87
|
"format-package": "^7.0.0",
|
|
88
88
|
"@hono/bun-compress": "0.1.0",
|
|
89
89
|
"@hono/mcp": "0.2.0",
|
|
90
|
-
"@modelcontextprotocol/sdk": "1.
|
|
91
|
-
"hono": "^4.10.
|
|
92
|
-
"zod": "
|
|
90
|
+
"@modelcontextprotocol/sdk": "1.24.2",
|
|
91
|
+
"hono": "^4.10.7",
|
|
92
|
+
"zod": "4.1.13"
|
|
93
93
|
}
|
|
94
94
|
}
|
|
@@ -20,7 +20,7 @@ export type ContentsQuery = z.infer<typeof ContentsQuerySchema>;
|
|
|
20
20
|
*/
|
|
21
21
|
const ContentsItemSchema = z.object({
|
|
22
22
|
url: z.string().describe('URL'),
|
|
23
|
-
title: z.string().describe('Title'),
|
|
23
|
+
title: z.string().optional().describe('Title'),
|
|
24
24
|
html: z.string().optional().describe('HTML content'),
|
|
25
25
|
markdown: z.string().optional().describe('Markdown content'),
|
|
26
26
|
});
|
|
@@ -44,7 +44,7 @@ export const ContentsStructuredContentSchema = z.object({
|
|
|
44
44
|
.array(
|
|
45
45
|
z.object({
|
|
46
46
|
url: z.string().describe('URL'),
|
|
47
|
-
title: z.string().describe('Title'),
|
|
47
|
+
title: z.string().optional().describe('Title'),
|
|
48
48
|
content: z.string().describe('Extracted content'),
|
|
49
49
|
contentLength: z.number().describe('Content length'),
|
|
50
50
|
}),
|