discogs-mcp-server 0.4.2 → 0.4.3

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 CHANGED
@@ -28,6 +28,8 @@ If you just want to get started immediately using this MCP Server with the [Clau
28
28
  - [NPX](#npx)
29
29
  - [Local Node](#local-node)
30
30
  - [Docker](#docker)
31
+ - [LibreChat](#librechat)
32
+ - [LM Studio](#lm-studio)
31
33
  - [TODO](#todo)
32
34
  - [License](#license)
33
35
 
@@ -116,7 +118,8 @@ For more information about the MCP Inspector, visit [the official documentation]
116
118
 
117
119
  ## MCP Clients
118
120
 
119
- Currently, this MCP server has only been tested with Claude Desktop. More client examples will be added in the future.
121
+ More client examples will be added in the future. If you'd like configuration for a specific client, either
122
+ request it by opening a new issue or creating the pull request to edit this section of the README yourself.
120
123
 
121
124
  ### Claude Desktop Configuration
122
125
 
@@ -188,6 +191,38 @@ The docker image should have been built before using this method.
188
191
 
189
192
  Any changes to local code will require Claude to be restarted to take effect. Also, Claude requires human-in-the-loop interaction to allow an MCP tool to be run, so everytime a new tool is accessed Claude will ask for permission. You usually only have to do this once per tool per chat. _If using the free version, long chats may result in more frequent errors trying to run tools as Claude limits the amount of context within a single chat._
190
193
 
194
+ ### LibreChat
195
+
196
+ In the `librechat.yaml` configuration file, add this under the `mcpServers` section:
197
+
198
+ ```yaml
199
+ discogs:
200
+ type: stdio
201
+ command: npx
202
+ args: ["-y", "discogs-mcp-server"]
203
+ env:
204
+ DISCOGS_PERSONAL_ACCESS_TOKEN: YOUR_TOKEN_GOES_HERE
205
+ ```
206
+
207
+ ### LM Studio
208
+
209
+ Get to the Chat `Settings`. In the `Program` tab there will be a dropdown with a default of `Install`. Select `Edit mcp.json`. Add this under the `mcpServers` section:
210
+
211
+ ```json
212
+ "discogs": {
213
+ "command": "npx",
214
+ "args": [
215
+ "-y",
216
+ "discogs-mcp-server"
217
+ ],
218
+ "env": {
219
+ "DISCOGS_PERSONAL_ACCESS_TOKEN": "YOUR_TOKEN_GOES_HERE"
220
+ }
221
+ }
222
+ ```
223
+
224
+ After you Save, in the `Program` tab there should now be an `mcp/discogs` toggle to enable the server. Within every chat box there is an `Integrations` menu where you can also enable mcp servers.
225
+
191
226
  ## TODO
192
227
 
193
228
  - OAuth support
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@ import dotenv from 'dotenv';
4
4
  import { z } from 'zod';
5
5
 
6
6
  // src/version.ts
7
- var VERSION = "0.4.2";
7
+ var VERSION = "0.4.3";
8
8
 
9
9
  // src/config.ts
10
10
  dotenv.config();