user-majico-mcp 0.7.5 → 0.8.2

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
@@ -1,13 +1,15 @@
1
- # user-majico MCP server
1
+ # `@majico/mcp`
2
2
 
3
3
  MCP server for [Majico.xyz](https://majico.xyz): read (and limited write) tools so coding agents can pull brand guidelines, design tokens, studio canvas, and export manifests.
4
4
 
5
+ Formerly published as `user-majico-mcp` — use `@majico/mcp` going forward (same pattern as `@majico/sdk`).
6
+
5
7
  **Requirements:** Majico account with tokens. Cursor humans connect via **OAuth** (no API key in `mcp.json`). API keys are for automation/stdio only.
6
8
 
7
9
  ## Install
8
10
 
9
11
  ```bash
10
- npx -y user-majico-mcp@0.4.1
12
+ npx -y @majico/mcp@0.8.1
11
13
  ```
12
14
 
13
15
  ## Environment variables (v0.2+)
@@ -108,7 +110,7 @@ Complete **Connect** in Cursor Settings → MCP. Use `list_projects` and pass `p
108
110
  "mcpServers": {
109
111
  "majico": {
110
112
  "command": "npx",
111
- "args": ["-y", "user-majico-mcp@0.4.1"],
113
+ "args": ["-y", "@majico/mcp@0.8.1"],
112
114
  "env": {
113
115
  "MAJICO_API_URL": "https://api.majico.xyz",
114
116
  "MAJICO_PROJECT_ID": "<uuid>",
@@ -1,6 +1,6 @@
1
1
  import type { MajicoClient } from "@majico/sdk";
2
2
  /**
3
- * Resources required by user-majico-mcp tool dispatch.
3
+ * Resources required by @majico/mcp tool dispatch.
4
4
  * npm @majico/sdk@1.0.1 omitted these and caused staging
5
5
  * "Cannot read properties of undefined" on ping / palette / blog.
6
6
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Resources required by user-majico-mcp tool dispatch.
2
+ * Resources required by @majico/mcp tool dispatch.
3
3
  * npm @majico/sdk@1.0.1 omitted these and caused staging
4
4
  * "Cannot read properties of undefined" on ping / palette / blog.
5
5
  */
@@ -17,7 +17,7 @@ export function mcpSdkSurfaceError(client) {
17
17
  if (!(key in client) || client[key] == null) {
18
18
  return ("Incompatible @majico/sdk: need >= 1.1.0 with projects, palette, blog, " +
19
19
  "pulse, research, and cursorSkills. Published 1.0.1 is too old for " +
20
- "user-majico-mcp >= 0.6.0.");
20
+ "@majico/mcp >= 0.8.0.");
21
21
  }
22
22
  }
23
23
  return null;
package/package.json CHANGED
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "name": "user-majico-mcp",
3
- "version": "0.7.5",
3
+ "version": "0.8.2",
4
4
  "description": "MCP server for Majico.xyz: brand guidelines, design tokens, studio canvas (Pro projects).",
5
5
  "repository": {
6
6
  "type": "git",
7
- "url": "git+https://github.com/majico-xyz/majico.xyz.git",
8
- "directory": "packages/user-majico-mcp"
7
+ "url": "git+https://github.com/majico-xyz/user-majico-mcp.git"
9
8
  },
10
- "homepage": "https://github.com/majico-xyz/majico.xyz/tree/main/packages/user-majico-mcp#readme",
9
+ "homepage": "https://github.com/majico-xyz/user-majico-mcp#readme",
11
10
  "bugs": {
12
11
  "url": "https://github.com/majico-xyz/majico.xyz/issues"
13
12
  },
@@ -18,6 +17,7 @@
18
17
  "main": "dist/index.js",
19
18
  "types": "dist/index.d.ts",
20
19
  "bin": {
20
+ "majico-mcp": "dist/index.js",
21
21
  "user-majico-mcp": "dist/index.js"
22
22
  },
23
23
  "exports": {