@mosvera/mcp 0.1.7 → 0.1.8
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/README.md +2 -2
- package/dist/context.d.ts +1 -1
- package/dist/context.js +1 -1
- package/mcpb/manifest.json +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ It begins with Claude Desktop, then shows the npm/MCP path and runtime paths.
|
|
|
24
24
|
|
|
25
25
|
The easiest path for non-command-line users is the Mosvera MCP Bundle:
|
|
26
26
|
|
|
27
|
-
1. Download `mosvera-mcp-0.1.
|
|
27
|
+
1. Download `mosvera-mcp-0.1.8.mcpb` from the latest
|
|
28
28
|
[GitHub release](https://github.com/mosvera/mcp/releases/latest).
|
|
29
29
|
2. Double-click the file, drag it into Claude Desktop, or install it from
|
|
30
30
|
Claude Desktop Settings → Extensions → Advanced settings → Install
|
|
@@ -195,7 +195,7 @@ npm run mcpb:inspect
|
|
|
195
195
|
The MCPB pack step creates:
|
|
196
196
|
|
|
197
197
|
```text
|
|
198
|
-
build/mosvera/mosvera-mcp-0.1.
|
|
198
|
+
build/mosvera/mosvera-mcp-0.1.8.mcpb
|
|
199
199
|
```
|
|
200
200
|
|
|
201
201
|
## Package Boundaries
|
package/dist/context.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type LoadedProject, type RegistryDiagnostic, type Validator } from "@mosvera/runtime";
|
|
2
2
|
import type { ToolContext } from "./types.ts";
|
|
3
|
-
export declare const SERVER_VERSION = "0.1.
|
|
3
|
+
export declare const SERVER_VERSION = "0.1.8";
|
|
4
4
|
export interface CliOptions {
|
|
5
5
|
registryDir?: string;
|
|
6
6
|
readOnlyMode: boolean;
|
package/dist/context.js
CHANGED
|
@@ -20,7 +20,7 @@ import { loadProject, RegistryProjectError } from "@mosvera/runtime/node";
|
|
|
20
20
|
import { fluxAdapter } from "@mosvera/provider-flux";
|
|
21
21
|
import { openaiAdapter } from "@mosvera/provider-openai";
|
|
22
22
|
import { sdxlAdapter } from "@mosvera/provider-sdxl";
|
|
23
|
-
export const SERVER_VERSION = "0.1.
|
|
23
|
+
export const SERVER_VERSION = "0.1.8";
|
|
24
24
|
function flagValue(argv, name) {
|
|
25
25
|
const direct = argv.find((arg) => arg.startsWith(`${name}=`));
|
|
26
26
|
if (direct !== undefined)
|
package/mcpb/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": "0.3",
|
|
3
3
|
"name": "mosvera-mcp",
|
|
4
4
|
"display_name": "Mosvera",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.8",
|
|
6
6
|
"description": "Resolve, compile, and save local Mosvera aesthetics from Claude Desktop.",
|
|
7
7
|
"long_description": "Mosvera runs locally against your own aesthetic registry. It lets Claude list named aesthetics, resolve them to canonical Mosvera models, compile portable design tokens and CSS variables, and save registry documents without sending provider requests or storing secrets.",
|
|
8
8
|
"author": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mosvera/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Run Mosvera as local MCP tools for agents, editors, and Claude Desktop.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"ci": "npm run build && npm run typecheck && npm test",
|
|
42
42
|
"clean": "rm -rf dist",
|
|
43
43
|
"mcpb:stage": "npm run build && node scripts/stage-mcpb.mjs",
|
|
44
|
-
"mcpb:pack": "npm run mcpb:stage && mcpb pack build/mcpb/mosvera build/mosvera/mosvera-mcp-0.1.
|
|
45
|
-
"mcpb:inspect": "node scripts/inspect-mcpb.mjs build/mosvera/mosvera-mcp-0.1.
|
|
44
|
+
"mcpb:pack": "npm run mcpb:stage && mcpb pack build/mcpb/mosvera build/mosvera/mosvera-mcp-0.1.8.mcpb",
|
|
45
|
+
"mcpb:inspect": "node scripts/inspect-mcpb.mjs build/mosvera/mosvera-mcp-0.1.8.mcpb",
|
|
46
46
|
"prepublishOnly": "npm run build && npm run typecheck && npm test",
|
|
47
47
|
"start": "tsx src/server.ts",
|
|
48
48
|
"test": "vitest run",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"zod": "^3.24.1"
|
|
66
66
|
},
|
|
67
67
|
"optionalDependencies": {
|
|
68
|
-
"@mosvera/provider-elevenlabs": "^0.1.
|
|
68
|
+
"@mosvera/provider-elevenlabs": "^0.1.3",
|
|
69
69
|
"@mosvera/provider-firefly": "^0.1.2",
|
|
70
70
|
"@mosvera/provider-google": "^0.1.2",
|
|
71
71
|
"@mosvera/provider-heygen": "^0.1.1",
|