convex-mcp-visual 1.2.4 → 1.2.5

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
@@ -24,6 +24,8 @@ Schema visualizer and dashboard tools for exploring Convex databases. Opens inte
24
24
  - [Management API](https://docs.convex.dev/management-api) - Programmatic project management
25
25
  - [Platform APIs](https://docs.convex.dev/platform-apis) - Building on Convex
26
26
 
27
+ ![Schema Graph View](assets/schema-graph-demo.png)
28
+
27
29
  ## Quick Start
28
30
 
29
31
  ### Option A: Direct CLI (any terminal):
@@ -61,11 +63,16 @@ npx convex-mcp-visual --setup
61
63
 
62
64
  ### Option C: Claude Code Plugin
63
65
 
64
- ```shell
66
+ ```bash
67
+ # Add the marketplace
65
68
  /plugin marketplace add waynesutton/convex-mcp-visual
66
- /plugin install convex-visual@waynesutton-convex-mcp-visual
69
+
70
+ # Install the plugin
71
+ /plugin install convex-visual@convex-visual-marketplace
67
72
  ```
68
73
 
74
+ See [Claude plugin docs](docs/files-claude-plugin.md) for details on plugin structure.
75
+
69
76
  ### 2. Setup Deploy Key
70
77
 
71
78
  Run setup from your Convex project folder:
@@ -145,6 +152,7 @@ All tools open an interactive browser UI and return output to the terminal. The
145
152
  - [Troubleshooting](docs/troubleshooting.md) - Common issues and fixes
146
153
  - [Limitations](docs/limitations.md) - Known limitations
147
154
  - [Plugin Distribution](docs/deployplugin.md) - Claude Code marketplace
155
+ - [Claude Plugin Structure](docs/files-claude-plugin.md) - Plugin and marketplace files
148
156
  - [User Guide: Schema Browser](docs/user-guide-schema-browser.md) - Using the schema browser
149
157
  - [User Guide: Dashboard](docs/user-guide-dashboard.md) - Using the dashboard
150
158
 
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.5",
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
  ],