@meldocio/mcp-stdio-proxy 1.0.16 → 1.0.17

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.
Files changed (2) hide show
  1. package/README.md +36 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Meldoc MCP for Claude Desktop
2
2
 
3
+ [![npm version](https://badge.fury.io/js/@meldocio%2Fmcp-stdio-proxy.svg)](https://www.npmjs.com/package/@meldocio/mcp-stdio-proxy)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+
3
6
  This package allows you to connect Claude Desktop to your Meldoc account, so you can use all your documentation directly in Claude.
4
7
 
5
8
  ## What is this?
@@ -13,6 +16,35 @@ This is a bridge between Claude Desktop and Meldoc. After setup, Claude will be
13
16
 
14
17
  **No additional installation required** - everything works automatically through Claude Desktop.
15
18
 
19
+ ## Installation
20
+
21
+ ### Via Claude Marketplace (Recommended) 🚀
22
+
23
+ The easiest way to install Meldoc MCP is through the Claude Marketplace:
24
+
25
+ ```bash
26
+ # Add the marketplace
27
+ claude plugin marketplace add meldoc/mcp-stdio-proxy
28
+
29
+ # Install the plugin
30
+ claude plugin install meldoc-mcp@meldoc
31
+ ```
32
+
33
+ After installation:
34
+
35
+ 1. Restart Claude Desktop (or your MCP client)
36
+ 2. Run `npx @meldocio/mcp-stdio-proxy@latest auth login` to authenticate
37
+
38
+ ### Via NPM
39
+
40
+ You can also install directly via npm:
41
+
42
+ ```bash
43
+ npm install -g @meldocio/mcp-stdio-proxy
44
+ ```
45
+
46
+ Then add to your Claude Desktop config file (see Manual Installation below).
47
+
16
48
  ## Quick Setup
17
49
 
18
50
  ### Automatic Installation (Recommended) ✨
@@ -24,6 +56,7 @@ npx @meldocio/mcp-stdio-proxy@latest install
24
56
  ```
25
57
 
26
58
  This command will:
59
+
27
60
  - ✅ Automatically find your Claude Desktop configuration file
28
61
  - ✅ Add Meldoc MCP configuration (preserving existing MCP servers)
29
62
  - ✅ Create the config file and directory if needed
@@ -31,6 +64,7 @@ This command will:
31
64
  - ✅ Show you the next steps
32
65
 
33
66
  After running `install`, you just need to:
67
+
34
68
  1. Restart Claude Desktop
35
69
  2. Run `npx @meldocio/mcp-stdio-proxy@latest auth login`
36
70
 
@@ -45,6 +79,7 @@ npx @meldocio/mcp-stdio-proxy@latest uninstall
45
79
  ```
46
80
 
47
81
  This will:
82
+
48
83
  - ✅ Remove Meldoc MCP configuration from Claude Desktop
49
84
  - ✅ Preserve other MCP servers
50
85
  - ✅ Clean up empty `mcpServers` object if needed
@@ -266,7 +301,7 @@ npx @meldocio/mcp-stdio-proxy@latest config set-workspace workspace-name
266
301
  npx @meldocio/mcp-stdio-proxy@latest config get-workspace
267
302
  ```
268
303
 
269
- ### Installation
304
+ ### Quick Installation Commands
270
305
 
271
306
  ```bash
272
307
  # Automatically configure Claude Desktop
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meldocio/mcp-stdio-proxy",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "MCP stdio proxy for meldoc - connects Claude Desktop to meldoc MCP API",
5
5
  "bin": {
6
6
  "meldoc-mcp": "bin/meldoc-mcp-proxy.js"