discogs-mcp-server 0.1.0 → 0.3.0
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 +21 -0
- package/README.md +11 -6
- package/dist/index.js +1156 -81
- package/dist/index.js.map +1 -1
- package/package.json +8 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Christopher Kim
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,7 +1,17 @@
|
|
|
1
|
+
[](LICENSE)
|
|
2
|
+
[](https://github.com/cswkim/discogs-mcp-server/releases)
|
|
3
|
+
[](https://github.com/cswkim/discogs-mcp-server/actions/workflows/check-pr.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/discogs-mcp-server)
|
|
5
|
+
[](https://github.com/sponsors/cswkim)
|
|
6
|
+
|
|
1
7
|
# Discogs MCP Server
|
|
2
8
|
|
|
3
9
|
MCP Server for the Discogs API, enabling music catalog operations, search functionality, and more.
|
|
4
10
|
|
|
11
|
+
## Quickstart
|
|
12
|
+
|
|
13
|
+
If you just want to get started immediately using this MCP Server with the [Claude](https://claude.ai) desktop app and don't care about development or running the server yourself, then make sure you have [Node.js](https://nodejs.org/en) installed and your Discogs personal access token ready and skip straight to the [Claude configuration section](#claude-desktop-configuration). Use the `NPX` method from that section.
|
|
14
|
+
|
|
5
15
|
## Table of Contents
|
|
6
16
|
|
|
7
17
|
- [Acknowledgements](#acknowledgements)
|
|
@@ -182,12 +192,7 @@ Any changes to local code will require Claude to be restarted to take effect. Al
|
|
|
182
192
|
|
|
183
193
|
- OAuth support
|
|
184
194
|
- Missing tools:
|
|
185
|
-
-
|
|
186
|
-
- Inventory management - uploading/exporting, etc.
|
|
187
|
-
- Getting user submissions
|
|
188
|
-
- Getting user contributions
|
|
189
|
-
- Editing collection custom fields
|
|
190
|
-
- Getting versions from a master release
|
|
195
|
+
- Inventory uploading
|
|
191
196
|
|
|
192
197
|
## License
|
|
193
198
|
|