@coreviz/cli 1.4.0 → 1.5.1
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/marketplace.json +37 -0
- package/.claude-plugin/plugin.json +29 -0
- package/README.md +34 -11
- package/bin/mcp.js +4 -4
- package/package.json +2 -3
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "coreviz",
|
|
3
|
+
"owner": {
|
|
4
|
+
"name": "coreviz"
|
|
5
|
+
},
|
|
6
|
+
"metadata": {
|
|
7
|
+
"description": "CoreViz plugin marketplace — AI-powered visual asset management tools for Claude Code and other MCP clients.",
|
|
8
|
+
"version": "1.4.0"
|
|
9
|
+
},
|
|
10
|
+
"plugins": [
|
|
11
|
+
{
|
|
12
|
+
"name": "coreviz",
|
|
13
|
+
"source": {
|
|
14
|
+
"source": "github",
|
|
15
|
+
"repo": "coreviz/cli"
|
|
16
|
+
},
|
|
17
|
+
"description": "AI-powered visual asset management for Claude Code. Search, tag, analyze, edit, and organize your media library using natural language.",
|
|
18
|
+
"version": "1.4.0",
|
|
19
|
+
"author": {
|
|
20
|
+
"name": "coreviz"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://github.com/coreviz/cli#readme",
|
|
23
|
+
"repository": "https://github.com/coreviz/cli",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"keywords": [
|
|
26
|
+
"media",
|
|
27
|
+
"images",
|
|
28
|
+
"visual",
|
|
29
|
+
"assets",
|
|
30
|
+
"search",
|
|
31
|
+
"tagging",
|
|
32
|
+
"AI"
|
|
33
|
+
],
|
|
34
|
+
"category": "media"
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "coreviz",
|
|
3
|
+
"description": "AI-powered visual asset management for Claude Code. Search, tag, analyze, edit, and organize your media library using natural language.",
|
|
4
|
+
"version": "1.4.0",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "coreviz"
|
|
7
|
+
},
|
|
8
|
+
"homepage": "https://github.com/coreviz/cli#readme",
|
|
9
|
+
"repository": "https://github.com/coreviz/cli",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"media",
|
|
13
|
+
"images",
|
|
14
|
+
"visual",
|
|
15
|
+
"assets",
|
|
16
|
+
"search",
|
|
17
|
+
"tagging",
|
|
18
|
+
"AI"
|
|
19
|
+
],
|
|
20
|
+
"category": "media",
|
|
21
|
+
"mcpServers": {
|
|
22
|
+
"coreviz": {
|
|
23
|
+
"command": "node",
|
|
24
|
+
"args": [
|
|
25
|
+
"${CLAUDE_PLUGIN_ROOT}/bin/mcp.js"
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
package/README.md
CHANGED
|
@@ -149,17 +149,40 @@ npx @coreviz/cli whoami
|
|
|
149
149
|
npx @coreviz/cli login
|
|
150
150
|
```
|
|
151
151
|
|
|
152
|
-
2.
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
152
|
+
2. Connect to your MCP client:
|
|
153
|
+
|
|
154
|
+
**Claude Code** — Install the plugin (recommended):
|
|
155
|
+
|
|
156
|
+
```bash
|
|
157
|
+
claude plugin marketplace add coreviz/cli
|
|
158
|
+
claude plugin install coreviz@coreviz
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
Or configure MCP manually in `~/.claude/settings.json`:
|
|
162
|
+
|
|
163
|
+
```json
|
|
164
|
+
{
|
|
165
|
+
"mcpServers": {
|
|
166
|
+
"coreviz": {
|
|
167
|
+
"command": "npx",
|
|
168
|
+
"args": ["coreviz-mcp"]
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
**Claude Desktop** — Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
175
|
+
|
|
176
|
+
```json
|
|
177
|
+
{
|
|
178
|
+
"mcpServers": {
|
|
179
|
+
"coreviz": {
|
|
180
|
+
"command": "npx",
|
|
181
|
+
"args": ["coreviz-mcp"]
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
```
|
|
163
186
|
|
|
164
187
|
3. In Claude Code, run `/mcp` to confirm the server is connected.
|
|
165
188
|
|
package/bin/mcp.js
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* Add to .mcp.json:
|
|
10
10
|
* {
|
|
11
11
|
* "mcpServers": {
|
|
12
|
-
* "coreviz": { "command": "npx", "args": ["coreviz
|
|
12
|
+
* "coreviz": { "command": "npx", "args": ["@coreviz/cli", "mcp"] }
|
|
13
13
|
* }
|
|
14
14
|
* }
|
|
15
15
|
*/
|
|
@@ -33,7 +33,7 @@ async function main() {
|
|
|
33
33
|
|
|
34
34
|
if (!token && !apiKey) {
|
|
35
35
|
process.stderr.write(
|
|
36
|
-
'[
|
|
36
|
+
'[mcp] Not authenticated. Run `coreviz login` first, ' +
|
|
37
37
|
'or set COREVIZ_API_KEY environment variable.\n'
|
|
38
38
|
);
|
|
39
39
|
process.exit(1);
|
|
@@ -54,10 +54,10 @@ async function main() {
|
|
|
54
54
|
const transport = new StdioServerTransport();
|
|
55
55
|
await server.connect(transport);
|
|
56
56
|
|
|
57
|
-
process.stderr.write('[
|
|
57
|
+
process.stderr.write('[mcp] Server ready\n');
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
main().catch((err) => {
|
|
61
|
-
process.stderr.write(`[
|
|
61
|
+
process.stderr.write(`[mcp] Fatal error: ${err?.message || err}\n`);
|
|
62
62
|
process.exit(1);
|
|
63
63
|
});
|
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreviz/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CoreViz CLI tool",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"coreviz": "./bin/cli.js",
|
|
9
|
-
"mcp": "./bin/mcp.js"
|
|
10
|
-
"cli": "./bin/cli.js"
|
|
9
|
+
"coreviz-mcp": "./bin/mcp.js"
|
|
11
10
|
},
|
|
12
11
|
"scripts": {
|
|
13
12
|
"test": "echo \"Error: no test specified\" && exit 1"
|