@youdotcom-oss/mcp 1.1.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.
Files changed (4) hide show
  1. package/README.md +601 -0
  2. package/bin/stdio +11 -0
  3. package/dist/stdio.js +17374 -0
  4. package/package.json +65 -0
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@youdotcom-oss/mcp",
3
+ "version": "1.1.4",
4
+ "description": "You.com API Model Context Protocol Server",
5
+ "type": "module",
6
+ "bin": "bin/stdio",
7
+ "scripts": {
8
+ "build": "bun build ./src/stdio.ts --outdir ./dist --target=node",
9
+ "dev": "bun src/stdio.ts",
10
+ "inspect": "bunx @modelcontextprotocol/inspector -e YDC_API_KEY=$YDC_API_KEY bun dev",
11
+ "start": "bun run bin/http",
12
+ "test": "bun test",
13
+ "test:coverage": "bun test --coverage",
14
+ "test:coverage:watch": "bun test --coverage --watch",
15
+ "check": "biome check",
16
+ "check:write": "biome check --write",
17
+ "prepare": "git config core.hooksPath .hooks"
18
+ },
19
+ "keywords": [
20
+ "mcp",
21
+ "web search",
22
+ "model context protocol"
23
+ ],
24
+ "author": "You.com (https://you.com)",
25
+ "license": "MIT",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/youdotcom-oss/youdotcom-mcp-server.git"
29
+ },
30
+ "bugs": {
31
+ "url": "https://github.com/youdotcom-oss/youdotcom-mcp-server/issues"
32
+ },
33
+ "homepage": "https://github.com/youdotcom-oss/youdotcom-mcp-server/tree/main#readme",
34
+ "files": [
35
+ "bin/stdio",
36
+ "dist"
37
+ ],
38
+ "publishConfig": {
39
+ "access": "public"
40
+ },
41
+ "engines": {
42
+ "node": ">=18",
43
+ "bun": ">= 1.2.21"
44
+ },
45
+ "devDependencies": {
46
+ "@biomejs/biome": "2.2.4",
47
+ "@commitlint/cli": "^19.8.1",
48
+ "@commitlint/config-conventional": "^19.8.1",
49
+ "@eslint/js": "9.36.0",
50
+ "@modelcontextprotocol/inspector": "0.16.8",
51
+ "@types/bun": "latest",
52
+ "typescript": "5.9.2",
53
+ "lint-staged": "^16.2.0",
54
+ "@hono/mcp": "0.1.4",
55
+ "@modelcontextprotocol/sdk": "1.18.1",
56
+ "hono": "^4.9.8",
57
+ "neverthrow": "8.2.0",
58
+ "zod": "3.25.76"
59
+ },
60
+ "lint-staged": {
61
+ "*.{ts,tsx,json}": [
62
+ "bunx @biomejs/biome check --write"
63
+ ]
64
+ }
65
+ }