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 +1 -1
- package/README.md +1 -1
- package/build/scripts/interactive-setup.js +1 -1
- package/package.json +11 -6
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -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('
|
|
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.
|
|
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": "
|
|
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": "
|
|
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/
|
|
53
|
+
"url": "https://github.com/mrnajiboy/ebay-mcp-remote-edition.git"
|
|
54
54
|
},
|
|
55
|
-
"homepage": "https://github.com/
|
|
55
|
+
"homepage": "https://github.com/mrnajiboy/ebay-mcp-remote-edition#readme",
|
|
56
56
|
"bugs": {
|
|
57
|
-
"url": "https://github.com/
|
|
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
|
}
|