@meldocio/mcp-stdio-proxy 1.0.28 → 1.0.29

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.
@@ -14,7 +14,7 @@
14
14
  "source": "github",
15
15
  "repo": "meldoc-io/mcp-stdio-proxy"
16
16
  },
17
- "version": "1.0.28",
17
+ "version": "1.0.29",
18
18
  "description": "Connect Claude Desktop, Claude Code, and other MCP clients to your Meldoc documentation workspace. Read, search, create, and update your documentation directly from AI conversations.",
19
19
  "author": {
20
20
  "name": "Meldoc",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meldoc-mcp",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
4
4
  "description": "Connect Claude Desktop, Claude Code, and other MCP clients to your Meldoc documentation workspace. Read, search, create, and update your documentation directly from AI conversations through the Model Context Protocol.",
5
5
  "author": {
6
6
  "name": "Meldoc",
@@ -34,8 +34,8 @@ function getToolsList() {
34
34
  properties: {
35
35
  workspaceAlias: { type: 'string', description: 'Workspace alias (auto-selected if user has only one workspace)' },
36
36
  workspaceId: { type: 'string', description: 'Workspace UUID (auto-selected if user has only one workspace)' },
37
- docId: { type: 'string', description: 'UUID of the document (alias: id)' },
38
- id: { type: 'string', description: 'UUID of the document (alias for docId)' },
37
+ docId: { type: 'string', description: 'Document UUID or alias (alias: id)' },
38
+ id: { type: 'string', description: 'Document UUID or alias (alias for docId)' },
39
39
  path: { type: 'string', description: 'Path of the document (not yet implemented)' }
40
40
  }
41
41
  }
@@ -129,7 +129,8 @@ function getToolsList() {
129
129
  properties: {
130
130
  workspaceAlias: { type: 'string', description: 'Workspace alias (auto-selected if user has only one workspace)' },
131
131
  workspaceId: { type: 'string', description: 'Workspace UUID (auto-selected if user has only one workspace)' },
132
- docId: { type: 'string', description: 'UUID of the document' }
132
+ docId: { type: 'string', description: 'Document UUID or alias (alias: id)' },
133
+ id: { type: 'string', description: 'Document UUID or alias (alias for docId)' }
133
134
  }
134
135
  }
135
136
  },
@@ -140,7 +141,10 @@ function getToolsList() {
140
141
  type: 'object',
141
142
  required: ['docId'],
142
143
  properties: {
143
- docId: { type: 'string', description: 'UUID of the document' }
144
+ workspaceAlias: { type: 'string', description: 'Workspace alias (auto-selected if user has only one workspace)' },
145
+ workspaceId: { type: 'string', description: 'Workspace UUID (auto-selected if user has only one workspace)' },
146
+ docId: { type: 'string', description: 'Document UUID or alias (alias: id)' },
147
+ id: { type: 'string', description: 'Document UUID or alias (alias for docId)' }
144
148
  }
145
149
  }
146
150
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meldocio/mcp-stdio-proxy",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
4
4
  "description": "MCP stdio proxy for meldoc - connects Claude Desktop and Claude Code to meldoc MCP API",
5
5
  "bin": {
6
6
  "meldoc-mcp": "bin/meldoc-mcp-proxy.js"