@youdotcom-oss/mcp 1.1.5 → 1.1.6-experimental-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.
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  var __create = Object.create;
2
3
  var __getProtoOf = Object.getPrototypeOf;
3
4
  var __defProp = Object.defineProperty;
@@ -13216,14 +13217,14 @@ var EMPTY_COMPLETION_RESULT = {
13216
13217
  // package.json
13217
13218
  var package_default = {
13218
13219
  name: "@youdotcom-oss/mcp",
13219
- version: "1.1.5",
13220
+ version: "1.1.6-experimental-4",
13220
13221
  description: "You.com API Model Context Protocol Server",
13221
13222
  type: "module",
13222
- bin: "bin/stdio",
13223
+ bin: "bin/stdio.js",
13223
13224
  scripts: {
13224
- build: "bun build ./src/stdio.ts --outdir ./dist --target=node",
13225
+ build: "bun build ./src/stdio.ts --outfile ./bin/stdio.js --target=node",
13225
13226
  dev: "bun src/stdio.ts",
13226
- inspect: "bunx @modelcontextprotocol/inspector -e YDC_API_KEY=$YDC_API_KEY bun dev",
13227
+ inspect: "bunx @modelcontextprotocol/inspector bun dev",
13227
13228
  start: "bun run bin/http",
13228
13229
  test: "bun test",
13229
13230
  "test:coverage": "bun test --coverage",
@@ -13248,8 +13249,7 @@ var package_default = {
13248
13249
  },
13249
13250
  homepage: "https://github.com/youdotcom-oss/youdotcom-mcp-server/tree/main#readme",
13250
13251
  files: [
13251
- "bin/stdio",
13252
- "dist"
13252
+ "bin/stdio.js"
13253
13253
  ],
13254
13254
  publishConfig: {
13255
13255
  access: "public"
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@youdotcom-oss/mcp",
3
- "version": "1.1.5",
3
+ "version": "1.1.6-experimental-4",
4
4
  "description": "You.com API Model Context Protocol Server",
5
5
  "type": "module",
6
- "bin": "bin/stdio",
6
+ "bin": "bin/stdio.js",
7
7
  "scripts": {
8
- "build": "bun build ./src/stdio.ts --outdir ./dist --target=node",
8
+ "build": "bun build ./src/stdio.ts --outfile ./bin/stdio.js --target=node",
9
9
  "dev": "bun src/stdio.ts",
10
- "inspect": "bunx @modelcontextprotocol/inspector -e YDC_API_KEY=$YDC_API_KEY bun dev",
10
+ "inspect": "bunx @modelcontextprotocol/inspector bun dev",
11
11
  "start": "bun run bin/http",
12
12
  "test": "bun test",
13
13
  "test:coverage": "bun test --coverage",
@@ -32,8 +32,7 @@
32
32
  },
33
33
  "homepage": "https://github.com/youdotcom-oss/youdotcom-mcp-server/tree/main#readme",
34
34
  "files": [
35
- "bin/stdio",
36
- "dist"
35
+ "bin/stdio.js"
37
36
  ],
38
37
  "publishConfig": {
39
38
  "access": "public"
package/bin/stdio DELETED
@@ -1,11 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- console.log('Starting You.com MCP Server in Stdio mode...');
4
- console.log('Protocol: JSON-RPC over stdin/stdout');
5
- console.log('Authentication: YDC_API_KEY environment variable');
6
-
7
- // Import and run the built stdio server
8
- import('../dist/stdio.js').catch((error) => {
9
- console.error('Failed to start stdio server:', error);
10
- process.exit(1);
11
- });