saglitzdesign-mcp 0.3.1 → 0.3.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/LICENSE CHANGED
@@ -19,11 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
20
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
21
  SOFTWARE.
22
-
23
- ---
24
-
25
- Note on bundled research content: the files under knowledge/ are original
26
- syntheses written for this project, with sources cited in each document's
27
- frontmatter. Screenshot images referenced by knowledge/examples/*.json are a
28
- local research asset, are NOT part of this repository or the published
29
- package, and may not be redistributed.
package/NOTICE.md ADDED
@@ -0,0 +1,16 @@
1
+ # Notice on bundled content
2
+
3
+ The software is licensed under the [MIT License](LICENSE).
4
+
5
+ Additional notes on the research content shipped in this repository:
6
+
7
+ - The documents under `knowledge/` are original syntheses written for this
8
+ project. Sources consulted are cited in each document's frontmatter
9
+ (`sources:`). No third‑party text is reproduced verbatim.
10
+ - Screenshot images referenced by `knowledge/examples/*.json` are a local
11
+ research asset. They are **not** part of this repository or any published
12
+ package (`knowledge/examples/images/` is git‑ignored), and may not be
13
+ redistributed. See [`scripts/regenerate-examples.md`](scripts/regenerate-examples.md).
14
+
15
+ These notes describe the provenance of the bundled content; they do not modify
16
+ the MIT License terms above.
package/README.md CHANGED
@@ -11,6 +11,10 @@ actually convert.
11
11
 
12
12
  56 curated knowledge documents · 10 tools · phased roadmaps · real‑world visual examples
13
13
 
14
+ [![npm](https://img.shields.io/npm/v/saglitzdesign-mcp?color=cb3837&logo=npm)](https://www.npmjs.com/package/saglitzdesign-mcp)
15
+ [![license](https://img.shields.io/badge/license-MIT-blue)](LICENSE)
16
+ [![MCP](https://img.shields.io/badge/Model_Context_Protocol-server-000)](https://modelcontextprotocol.io)
17
+
14
18
  [Why](#why) · [What's inside](#whats-inside) · [Tools](#tools) · [Install](#install) · [Usage](#usage) · [Extending](#extending-the-knowledge-base) · [License](#license)
15
19
 
16
20
  </div>
@@ -73,7 +77,7 @@ instead of guessing.
73
77
 
74
78
  **Requirements:** Node.js 18+.
75
79
 
76
- **From npm** (once published):
80
+ **From npm** (no clone needed):
77
81
 
78
82
  ```bash
79
83
  npx saglitzdesign-mcp
@@ -90,13 +94,17 @@ npm run build
90
94
 
91
95
  ### Claude Code
92
96
 
93
- Register it once, available in every project:
97
+ Register it once (via npm — no clone), available in every project:
94
98
 
95
99
  ```bash
96
- claude mcp add --scope user saglitzdesign node /absolute/path/to/saglitzdesign-mcp/dist/index.js
100
+ claude mcp add --scope user saglitzdesign -- npx -y saglitzdesign-mcp
97
101
  ```
98
102
 
99
- Or use the project‑scoped `.mcp.json` already in this repo (relative `dist/index.js`).
103
+ Or, if you cloned the repo, point it at the built file:
104
+
105
+ ```bash
106
+ claude mcp add --scope user saglitzdesign node /absolute/path/to/saglitzdesign-mcp/dist/index.js
107
+ ```
100
108
 
101
109
  ### Claude Desktop
102
110
 
@@ -106,8 +114,8 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
106
114
  {
107
115
  "mcpServers": {
108
116
  "saglitzdesign": {
109
- "command": "node",
110
- "args": ["/absolute/path/to/saglitzdesign-mcp/dist/index.js"]
117
+ "command": "npx",
118
+ "args": ["-y", "saglitzdesign-mcp"]
111
119
  }
112
120
  }
113
121
  }
@@ -115,7 +123,7 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
115
123
 
116
124
  ### Cursor / other MCP clients
117
125
 
118
- Point the client at `node /absolute/path/to/saglitzdesign-mcp/dist/index.js` over stdio.
126
+ Run `npx -y saglitzdesign-mcp` over stdio (or `node /absolute/path/to/dist/index.js` from a clone).
119
127
 
120
128
  ### Dev & debug
121
129
 
@@ -184,7 +192,8 @@ To rebuild the local image library (or add your own examples), see
184
192
  [MIT](LICENSE) © 2026 Saglitz Design.
185
193
 
186
194
  The `knowledge/` documents are original syntheses with sources cited per file.
187
- Referenced screenshots are not part of this repo and may not be redistributed.
195
+ Referenced screenshots are not part of this repo and may not be redistributed
196
+ see [NOTICE.md](NOTICE.md).
188
197
 
189
198
  <div align="center">
190
199
  <sub>Built for the <a href="https://modelcontextprotocol.io">Model Context Protocol</a>.</sub>
package/dist/index.js CHANGED
@@ -19,7 +19,7 @@ const examplesDir = join(knowledgeDir, "examples");
19
19
  const examples = loadExamples(examplesDir);
20
20
  const server = new McpServer({
21
21
  name: "saglitzdesign",
22
- version: "0.3.1",
22
+ version: "0.3.2",
23
23
  });
24
24
  function docHeader(d) {
25
25
  return `# ${d.title}\n_id: ${d.id} · category: ${d.category} · platform: ${d.platform} · tags: ${d.tags.join(", ")}_\n`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saglitzdesign-mcp",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "SaglitzDesign — expert MCP server for mobile app & website design: UI, UX, buttons, design languages, SEO and GEO guidance backed by a curated knowledge base and real-world pattern research.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,7 +13,8 @@
13
13
  "!knowledge/examples/images",
14
14
  "scripts/regenerate-examples.md",
15
15
  "LICENSE",
16
- "README.md"
16
+ "README.md",
17
+ "NOTICE.md"
17
18
  ],
18
19
  "engines": {
19
20
  "node": ">=18"