@meldocio/mcp-stdio-proxy 1.0.20 → 1.0.21
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/.claude-plugin/SKILL.md +87 -0
- package/.claude-plugin/marketplace.json +39 -0
- package/.claude-plugin/plugin.json +10 -0
- package/.mcp.json +6 -0
- package/README.md +5 -5
- package/package.json +5 -2
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# Meldoc MCP Integration
|
|
2
|
+
|
|
3
|
+
Connect to your Meldoc documentation directly from Claude Desktop, Claude Code, and other MCP clients.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
Meldoc MCP provides seamless access to your Meldoc documentation workspace through the Model Context Protocol. Once configured, you can interact with your documentation naturally through AI conversations.
|
|
8
|
+
|
|
9
|
+
## Available Tools
|
|
10
|
+
|
|
11
|
+
### Document Operations
|
|
12
|
+
|
|
13
|
+
- **`docs_list`** - List all documents in a workspace or project
|
|
14
|
+
- **`docs_get`** - Get the complete content of a specific document
|
|
15
|
+
- **`docs_tree`** - Display the hierarchical structure of documents in a project
|
|
16
|
+
- **`docs_search`** - Search through all documents using full-text search
|
|
17
|
+
- **`docs_create`** - Create a new document (requires write permissions)
|
|
18
|
+
- **`docs_update`** - Update an existing document's content or metadata (requires write permissions)
|
|
19
|
+
- **`docs_delete`** - Delete a document (requires write permissions)
|
|
20
|
+
- **`docs_links`** - Show all outgoing links from a document
|
|
21
|
+
- **`docs_backlinks`** - Find all documents that link to a specific document
|
|
22
|
+
|
|
23
|
+
### Project Operations
|
|
24
|
+
|
|
25
|
+
- **`projects_list`** - List all projects available in your workspace
|
|
26
|
+
|
|
27
|
+
### Management Operations
|
|
28
|
+
|
|
29
|
+
- **`server_info`** - Get information about your account and access permissions
|
|
30
|
+
- **`list_workspaces`** - Show all workspaces you have access to
|
|
31
|
+
- **`set_workspace`** - Set the default workspace for operations
|
|
32
|
+
- **`get_workspace`** - Get information about the currently active workspace
|
|
33
|
+
- **`auth_status`** - Check your current authentication status
|
|
34
|
+
|
|
35
|
+
## Usage Examples
|
|
36
|
+
|
|
37
|
+
Simply ask Claude naturally! For example:
|
|
38
|
+
|
|
39
|
+
- "Show me all documents in the API project"
|
|
40
|
+
- "Find information about authentication"
|
|
41
|
+
- "Search for documents about error handling"
|
|
42
|
+
- "Create a new document about our deployment process"
|
|
43
|
+
- "Which documents link to the database schema?"
|
|
44
|
+
- "Show me the document tree for the frontend project"
|
|
45
|
+
- "Update the getting started guide with new information"
|
|
46
|
+
|
|
47
|
+
Your AI assistant will automatically:
|
|
48
|
+
|
|
49
|
+
- Select the appropriate tool
|
|
50
|
+
- Handle authentication
|
|
51
|
+
- Format the results nicely
|
|
52
|
+
- Provide context and explanations
|
|
53
|
+
|
|
54
|
+
## Authentication
|
|
55
|
+
|
|
56
|
+
Before using Meldoc MCP, you need to authenticate:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
npx @meldocio/mcp-stdio-proxy@latest auth login
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
This will open a browser flow for secure authentication. Your credentials are stored locally and automatically refreshed.
|
|
63
|
+
|
|
64
|
+
## Workspace Management
|
|
65
|
+
|
|
66
|
+
If you have multiple workspaces, you can:
|
|
67
|
+
|
|
68
|
+
1. List all workspaces: `npx @meldocio/mcp-stdio-proxy@latest config list-workspaces`
|
|
69
|
+
2. Set default workspace: `npx @meldocio/mcp-stdio-proxy@latest config set-workspace <name>`
|
|
70
|
+
3. Or specify workspace in requests directly
|
|
71
|
+
|
|
72
|
+
## Permissions
|
|
73
|
+
|
|
74
|
+
Some operations require write permissions to your workspace:
|
|
75
|
+
|
|
76
|
+
- Creating documents
|
|
77
|
+
- Updating documents
|
|
78
|
+
- Deleting documents
|
|
79
|
+
|
|
80
|
+
Read-only operations (list, get, search) work with any authenticated account.
|
|
81
|
+
|
|
82
|
+
## Related Documentation
|
|
83
|
+
|
|
84
|
+
- [Getting Started Guide](docs/getting-started.meldoc.md)
|
|
85
|
+
- [Authentication Guide](docs/authentication.meldoc.md)
|
|
86
|
+
- [MCP Tools Reference](docs/mcp-tools.meldoc.md)
|
|
87
|
+
- [Full Documentation](https://docs.meldoc.io/integrations/mcp)
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "meldoc-mcp",
|
|
3
|
+
"owner": {
|
|
4
|
+
"name": "Meldoc",
|
|
5
|
+
"email": "support@meldoc.io"
|
|
6
|
+
},
|
|
7
|
+
"metadata": {
|
|
8
|
+
"description": "Official Meldoc plugin marketplace for Claude Code MCP integrations"
|
|
9
|
+
},
|
|
10
|
+
"plugins": [
|
|
11
|
+
{
|
|
12
|
+
"name": "meldoc-mcp",
|
|
13
|
+
"source": {
|
|
14
|
+
"source": "github",
|
|
15
|
+
"repo": "meldoc-io/mcp-stdio-proxy"
|
|
16
|
+
},
|
|
17
|
+
"version": "1.0.21",
|
|
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
|
+
"author": {
|
|
20
|
+
"name": "Meldoc",
|
|
21
|
+
"email": "support@meldoc.io"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/meldoc-io/mcp-stdio-proxy#readme",
|
|
24
|
+
"repository": "https://github.com/meldoc-io/mcp-stdio-proxy",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"category": "productivity",
|
|
27
|
+
"keywords": [
|
|
28
|
+
"mcp",
|
|
29
|
+
"meldoc",
|
|
30
|
+
"documentation",
|
|
31
|
+
"claude",
|
|
32
|
+
"claude-code",
|
|
33
|
+
"ai",
|
|
34
|
+
"productivity",
|
|
35
|
+
"knowledge-base"
|
|
36
|
+
]
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "meldoc-mcp",
|
|
3
|
+
"version": "1.0.21",
|
|
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
|
+
"author": {
|
|
6
|
+
"name": "Meldoc",
|
|
7
|
+
"email": "support@meldoc.io"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/meldoc-io/mcp-stdio-proxy"
|
|
10
|
+
}
|
package/.mcp.json
ADDED
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# Meldoc MCP for Claude Desktop
|
|
1
|
+
# Meldoc MCP for Claude Desktop & Claude Code
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@meldocio/mcp-stdio-proxy)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
6
|
-
This package allows you to connect Claude Desktop to your Meldoc account, so you can use all your documentation directly in Claude.
|
|
6
|
+
This package allows you to connect Claude Desktop and Claude Code to your Meldoc account, so you can use all your documentation directly in Claude.
|
|
7
7
|
|
|
8
8
|
## 🚀 Quick Start - Install from Claude Marketplace
|
|
9
9
|
|
|
@@ -19,21 +19,21 @@ claude plugin install meldoc-mcp@meldoc-mcp
|
|
|
19
19
|
|
|
20
20
|
After installation:
|
|
21
21
|
|
|
22
|
-
1. Restart Claude Desktop
|
|
22
|
+
1. Restart Claude Desktop or Claude Code
|
|
23
23
|
2. Run `npx @meldocio/mcp-stdio-proxy@latest auth login` to authenticate
|
|
24
24
|
|
|
25
25
|
Done! 🎉 Now you can ask Claude to work with your Meldoc documentation.
|
|
26
26
|
|
|
27
27
|
## What is this?
|
|
28
28
|
|
|
29
|
-
This is a bridge between Claude Desktop and Meldoc. After setup, Claude will be able to:
|
|
29
|
+
This is a bridge between Claude (Desktop & Code) and Meldoc. After setup, Claude will be able to:
|
|
30
30
|
|
|
31
31
|
- 📖 Read your documentation from Meldoc
|
|
32
32
|
- 🔍 Search through documents
|
|
33
33
|
- ✏️ Create and update documents (if you have permissions)
|
|
34
34
|
- 📁 Work with projects and workspaces
|
|
35
35
|
|
|
36
|
-
**No additional installation required** - everything works automatically through Claude Desktop.
|
|
36
|
+
**No additional installation required** - everything works automatically through Claude Desktop and Claude Code.
|
|
37
37
|
|
|
38
38
|
## Installation
|
|
39
39
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meldocio/mcp-stdio-proxy",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "MCP stdio proxy for meldoc - connects Claude Desktop to meldoc MCP API",
|
|
3
|
+
"version": "1.0.21",
|
|
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"
|
|
7
7
|
},
|
|
8
8
|
"files": [
|
|
9
9
|
"bin/**",
|
|
10
10
|
"lib/**",
|
|
11
|
+
".claude-plugin/**",
|
|
12
|
+
".mcp.json",
|
|
11
13
|
"README.md",
|
|
12
14
|
"LICENSE"
|
|
13
15
|
],
|
|
@@ -18,6 +20,7 @@
|
|
|
18
20
|
"mcp",
|
|
19
21
|
"meldoc",
|
|
20
22
|
"claude",
|
|
23
|
+
"claude-code",
|
|
21
24
|
"stdio",
|
|
22
25
|
"proxy",
|
|
23
26
|
"json-rpc"
|