@mosvera/mcp 0.1.8 → 0.1.9

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 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.8.mcpb` from the latest
27
+ 1. Download `mosvera-mcp-0.1.9.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.8.mcpb
198
+ build/mosvera/mosvera-mcp-0.1.9.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.8";
3
+ export declare const SERVER_VERSION = "0.1.9";
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.8";
23
+ export const SERVER_VERSION = "0.1.9";
24
24
  function flagValue(argv, name) {
25
25
  const direct = argv.find((arg) => arg.startsWith(`${name}=`));
26
26
  if (direct !== undefined)
@@ -2,7 +2,7 @@
2
2
  "manifest_version": "0.3",
3
3
  "name": "mosvera-mcp",
4
4
  "display_name": "Mosvera",
5
- "version": "0.1.8",
5
+ "version": "0.1.9",
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.8",
3
+ "version": "0.1.9",
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.8.mcpb",
45
- "mcpb:inspect": "node scripts/inspect-mcpb.mjs build/mosvera/mosvera-mcp-0.1.8.mcpb",
44
+ "mcpb:pack": "npm run mcpb:stage && mcpb pack build/mcpb/mosvera build/mosvera/mosvera-mcp-0.1.9.mcpb",
45
+ "mcpb:inspect": "node scripts/inspect-mcpb.mjs build/mosvera/mosvera-mcp-0.1.9.mcpb",
46
46
  "prepublishOnly": "npm run build && npm run typecheck && npm test",
47
47
  "start": "tsx src/server.ts",
48
48
  "test": "vitest run",
@@ -66,11 +66,11 @@
66
66
  },
67
67
  "optionalDependencies": {
68
68
  "@mosvera/provider-elevenlabs": "^0.1.3",
69
- "@mosvera/provider-firefly": "^0.1.2",
70
- "@mosvera/provider-google": "^0.1.2",
69
+ "@mosvera/provider-firefly": "^0.1.3",
70
+ "@mosvera/provider-google": "^0.1.3",
71
71
  "@mosvera/provider-heygen": "^0.1.1",
72
- "@mosvera/provider-meshy": "^0.1.2",
73
- "@mosvera/provider-runway": "^0.1.2"
72
+ "@mosvera/provider-meshy": "^0.1.3",
73
+ "@mosvera/provider-runway": "^0.1.3"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@anthropic-ai/mcpb": "^2.1.2",