ebay-mcp 1.7.6 → 1.7.7
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/README.md +21 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -158,6 +158,7 @@ npm run setup
|
|
|
158
158
|
```
|
|
159
159
|
|
|
160
160
|
The wizard will:
|
|
161
|
+
|
|
161
162
|
- Configure your eBay credentials
|
|
162
163
|
- Set up OAuth authentication (for higher rate limits)
|
|
163
164
|
- Auto-detect and configure your MCP client (Claude Desktop, etc.)
|
|
@@ -241,17 +242,17 @@ For detailed OAuth setup and comprehensive configuration guide, see the [Configu
|
|
|
241
242
|
|
|
242
243
|
This server supports **9 AI clients** with auto-configuration via `npm run setup`:
|
|
243
244
|
|
|
244
|
-
| Client
|
|
245
|
-
|
|
246
|
-
| **Claude Desktop**
|
|
247
|
-
| **Cursor IDE**
|
|
248
|
-
| **Zed Editor**
|
|
249
|
-
| **Cline**
|
|
250
|
-
| **Continue.dev**
|
|
251
|
-
| **Windsurf (Codeium)** | macOS, Windows, Linux | `~/.codeium/windsurf/mcp_config.json`
|
|
252
|
-
| **Roo Code**
|
|
253
|
-
| **Claude Code CLI**
|
|
254
|
-
| **Amazon Q Developer** | AWS
|
|
245
|
+
| Client | Platform | Config Path | Status |
|
|
246
|
+
| ---------------------- | --------------------- | ---------------------------------------------------------------------------- | ------------------ |
|
|
247
|
+
| **Claude Desktop** | macOS, Windows, Linux | `~/Library/Application Support/Claude/claude_desktop_config.json` | ✅ Auto-configured |
|
|
248
|
+
| **Cursor IDE** | macOS, Windows, Linux | `~/.cursor/mcp.json` | ✅ Auto-configured |
|
|
249
|
+
| **Zed Editor** | macOS, Windows, Linux | `~/.config/zed/settings.json` | ✅ Auto-configured |
|
|
250
|
+
| **Cline** | VSCode Extension | `~/...globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json` | ✅ Auto-configured |
|
|
251
|
+
| **Continue.dev** | VSCode, JetBrains | `~/.continue/config.json` | ✅ Auto-configured |
|
|
252
|
+
| **Windsurf (Codeium)** | macOS, Windows, Linux | `~/.codeium/windsurf/mcp_config.json` | ✅ Auto-configured |
|
|
253
|
+
| **Roo Code** | VSCode Extension | `~/...globalStorage/rooveterinaryinc.roo-cline/settings/mcp_settings.json` | ✅ Auto-configured |
|
|
254
|
+
| **Claude Code CLI** | Terminal | `~/.claude.json` | ✅ Auto-configured |
|
|
255
|
+
| **Amazon Q Developer** | AWS | `~/.aws/amazonq/mcp.json` | ✅ Auto-configured |
|
|
255
256
|
|
|
256
257
|
**Configuration Requirements:**
|
|
257
258
|
|
|
@@ -504,6 +505,7 @@ EBAY_ENABLE_FILE_LOGGING=true
|
|
|
504
505
|
```
|
|
505
506
|
|
|
506
507
|
Log files are stored in `~/.ebay-mcp/logs/`:
|
|
508
|
+
|
|
507
509
|
- `error.log` - Error-level messages only
|
|
508
510
|
- `combined.log` - All log messages
|
|
509
511
|
- `debug.log` - Debug and verbose messages
|
|
@@ -635,11 +637,18 @@ Check current eBay API health, incidents, and fixes:
|
|
|
635
637
|
|
|
636
638
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
637
639
|
|
|
640
|
+
## Contributors
|
|
641
|
+
|
|
642
|
+
Thanks to all the amazing contributors who have helped make this project better! 🎉
|
|
643
|
+
|
|
644
|
+
<a href="https://github.com/YosefHayim/ebay-mcp/graphs/contributors">
|
|
645
|
+
<img src="https://contrib.rocks/image?repo=YosefHayim/ebay-mcp" alt="Contributors" />
|
|
646
|
+
</a>
|
|
647
|
+
|
|
638
648
|
## Acknowledgments
|
|
639
649
|
|
|
640
650
|
- [eBay Developers Program](https://developer.ebay.com/) for API access
|
|
641
651
|
- [Model Context Protocol](https://modelcontextprotocol.io/) for the MCP specification
|
|
642
|
-
- All [contributors](https://github.com/YosefHayim/ebay-mcp/graphs/contributors) who have helped improve this project
|
|
643
652
|
|
|
644
653
|
---
|
|
645
654
|
|
package/package.json
CHANGED