ebay-mcp-remote-edition 2.0.1 → 2.0.5

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Yosef Hayim Sabag
3
+ Copyright (c) 2025 Kenyatta Naji Johnson-Adams
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -11,7 +11,7 @@ A [Model Context Protocol (MCP)](https://modelcontextprotocol.io) server providi
11
11
 
12
12
  </div>
13
13
 
14
- ---
14
+ ----
15
15
 
16
16
  ## Fork differences
17
17
 
@@ -91,7 +91,7 @@ const EBAY_LOGO = `
91
91
  ${chalk.bold.white('API MCP Server Setup')}
92
92
  `;
93
93
  const CREATOR_CREDIT = `
94
- Creator: ${chalk.bold('mrnajiboy')}
94
+ Creator: ${chalk.bold('YosefHayim')}
95
95
  ${createClickableLink(chalk.underline('linkedin.com/in/yosef-hayim-sabag'), 'https://www.linkedin.com/in/yosef-hayim-sabag/')}
96
96
  `;
97
97
  // ═══════════════════════════════════════════════════════════════════════════
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ebay-mcp-remote-edition",
3
- "version": "2.0.1",
3
+ "version": "2.0.5",
4
4
  "description": "Remote + Local MCP server for eBay APIs - provides access to eBay developer functionality through MCP (Model Context Protocol)",
5
5
  "type": "module",
6
6
  "main": "build/index.js",
@@ -20,7 +20,7 @@
20
20
  "typecheck": "tsc --noEmit",
21
21
  "check": "tsc --noEmit && eslint . && prettier --check \"src/**/*.{ts,js,json,md}\"",
22
22
  "fix": "eslint . --fix && prettier --write \"src/**/*.{ts,js,json,md}\"",
23
- "prepare": "npm run build"
23
+ "prepare": "tsc && tsc-alias"
24
24
  },
25
25
  "keywords": [
26
26
  "mcp",
@@ -37,7 +37,7 @@
37
37
  "server",
38
38
  "backend"
39
39
  ],
40
- "author": "Yosef Hayim Sabag",
40
+ "author": "Kenyatta Naji Johnson-Adams",
41
41
  "license": "MIT",
42
42
  "files": [
43
43
  "build/**/*.js",
@@ -50,11 +50,11 @@
50
50
  ],
51
51
  "repository": {
52
52
  "type": "git",
53
- "url": "https://github.com/YosefHayim/ebay-mcp.git"
53
+ "url": "https://github.com/mrnajiboy/ebay-mcp-remote-edition.git"
54
54
  },
55
- "homepage": "https://github.com/YosefHayim/ebay-mcp#readme",
55
+ "homepage": "https://github.com/mrnajiboy/ebay-mcp-remote-edition#readme",
56
56
  "bugs": {
57
- "url": "https://github.com/YosefHayim/ebay-mcp/issues"
57
+ "url": "https://github.com/mrnajiboy/ebay-mcp-remote-edition/issues"
58
58
  },
59
59
  "dependencies": {
60
60
  "@modelcontextprotocol/sdk": "1.27.1",
@@ -102,5 +102,10 @@
102
102
  "packageManager": "pnpm@10.14.0",
103
103
  "engines": {
104
104
  "node": ">=18.0.0"
105
+ },
106
+ "pnpm": {
107
+ "onlyBuiltDependencies": [
108
+ "esbuild"
109
+ ]
105
110
  }
106
111
  }