convex-mcp-visual 1.2.4 → 1.2.6

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.
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "convex-visual-marketplace",
3
+ "owner": {
4
+ "name": "Wayne Sutton",
5
+ "email": "wayne@convex.dev"
6
+ },
7
+ "metadata": {
8
+ "description": "Visual tools for exploring Convex databases. Schema browser, dashboard, and ER diagrams.",
9
+ "version": "1.0.0",
10
+ "pluginRoot": "./"
11
+ },
12
+ "plugins": [
13
+ {
14
+ "name": "convex-visual",
15
+ "source": "./",
16
+ "description": "Schema browser, dashboard, and ER diagrams for Convex databases",
17
+ "version": "1.2.4",
18
+ "author": {
19
+ "name": "Wayne Sutton",
20
+ "email": "wayne@convex.dev"
21
+ },
22
+ "homepage": "https://github.com/waynesutton/convex-mcp-visual",
23
+ "repository": "https://github.com/waynesutton/convex-mcp-visual",
24
+ "license": "MIT",
25
+ "keywords": [
26
+ "convex",
27
+ "database",
28
+ "schema",
29
+ "visualization",
30
+ "mermaid",
31
+ "dashboard"
32
+ ],
33
+ "category": "database",
34
+ "tags": ["convex", "schema", "visualization", "mcp"]
35
+ }
36
+ ]
37
+ }
@@ -6,7 +6,7 @@
6
6
  "name": "Wayne Sutton",
7
7
  "email": "wayne@convex.dev"
8
8
  },
9
- "homepage": "https://github.com/waynesutton/convex-mcp-visual",
9
+ "homepage": "https://www.npmjs.com/package/convex-mcp-visual",
10
10
  "repository": "https://github.com/waynesutton/convex-mcp-visual",
11
11
  "license": "MIT",
12
12
  "keywords": [
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Convex MCP Visual
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/convex-mcp-visual.svg)](https://www.npmjs.com/package/convex-mcp-visual)
4
+
3
5
  Schema visualizer and dashboard tools for exploring Convex databases. Opens interactive browser UIs alongside terminal output.
4
6
 
5
7
  **Features:**
@@ -24,6 +26,8 @@ Schema visualizer and dashboard tools for exploring Convex databases. Opens inte
24
26
  - [Management API](https://docs.convex.dev/management-api) - Programmatic project management
25
27
  - [Platform APIs](https://docs.convex.dev/platform-apis) - Building on Convex
26
28
 
29
+ ![Schema Graph View](assets/schema-graph-demo.png)
30
+
27
31
  ## Quick Start
28
32
 
29
33
  ### Option A: Direct CLI (any terminal):
@@ -61,11 +65,16 @@ npx convex-mcp-visual --setup
61
65
 
62
66
  ### Option C: Claude Code Plugin
63
67
 
64
- ```shell
68
+ ```bash
69
+ # Add the marketplace
65
70
  /plugin marketplace add waynesutton/convex-mcp-visual
66
- /plugin install convex-visual@waynesutton-convex-mcp-visual
71
+
72
+ # Install the plugin
73
+ /plugin install convex-visual@convex-visual-marketplace
67
74
  ```
68
75
 
76
+ See [Claude plugin docs](docs/files-claude-plugin.md) for details on plugin structure.
77
+
69
78
  ### 2. Setup Deploy Key
70
79
 
71
80
  Run setup from your Convex project folder:
@@ -145,6 +154,7 @@ All tools open an interactive browser UI and return output to the terminal. The
145
154
  - [Troubleshooting](docs/troubleshooting.md) - Common issues and fixes
146
155
  - [Limitations](docs/limitations.md) - Known limitations
147
156
  - [Plugin Distribution](docs/deployplugin.md) - Claude Code marketplace
157
+ - [Claude Plugin Structure](docs/files-claude-plugin.md) - Plugin and marketplace files
148
158
  - [User Guide: Schema Browser](docs/user-guide-schema-browser.md) - Using the schema browser
149
159
  - [User Guide: Dashboard](docs/user-guide-dashboard.md) - Using the dashboard
150
160
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "convex-mcp-visual",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "description": "Visual MCP tools for exploring Convex databases - schema browser, dashboard, ER diagrams. Works as CLI, MCP server, or Claude Code plugin.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -10,7 +10,8 @@
10
10
  "files": [
11
11
  "dist",
12
12
  "README.md",
13
- ".claude-plugin",
13
+ ".claude-plugin/plugin.json",
14
+ ".claude-plugin/marketplace.json",
14
15
  ".mcp.json",
15
16
  "skills"
16
17
  ],