@merabylabs/promptarchitect-mcp 0.1.2 → 0.1.3

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.
Files changed (3) hide show
  1. package/LICENSE +40 -0
  2. package/README.md +4 -8
  3. package/package.json +4 -4
package/LICENSE ADDED
@@ -0,0 +1,40 @@
1
+ PROPRIETARY SOFTWARE LICENSE
2
+
3
+ Copyright (c) 2025 Meraby Labs. All rights reserved.
4
+
5
+ TERMS AND CONDITIONS
6
+
7
+ 1. GRANT OF LICENSE
8
+ This software is provided solely for use with the PromptArchitect service
9
+ (https://promptarchitectlabs.com). You are granted a limited, non-exclusive,
10
+ non-transferable license to use this software only as an MCP server client
11
+ connecting to the PromptArchitect backend API.
12
+
13
+ 2. RESTRICTIONS
14
+ You may NOT:
15
+ - Modify, adapt, translate, or create derivative works of this software
16
+ - Reverse engineer, decompile, or disassemble this software
17
+ - Distribute, sublicense, lease, rent, or lend this software
18
+ - Use this software for any purpose other than connecting to PromptArchitect
19
+ - Remove or alter any proprietary notices, labels, or marks
20
+ - Use this software to bypass or circumvent PromptArchitect services
21
+
22
+ 3. OWNERSHIP
23
+ This software is the intellectual property of Meraby Labs. All rights not
24
+ expressly granted herein are reserved by Meraby Labs.
25
+
26
+ 4. NO WARRANTY
27
+ THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29
+ FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
30
+
31
+ 5. LIMITATION OF LIABILITY
32
+ IN NO EVENT SHALL MERABY LABS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
33
+ LIABILITY ARISING FROM THE USE OF THIS SOFTWARE.
34
+
35
+ 6. TERMINATION
36
+ This license is effective until terminated. It will terminate automatically
37
+ if you fail to comply with any term. Upon termination, you must destroy all
38
+ copies of this software.
39
+
40
+ For inquiries, contact: support@promptarchitectlabs.com
package/README.md CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@merabylabs/promptarchitect-mcp.svg)](https://www.npmjs.com/package/@merabylabs/promptarchitect-mcp)
4
4
  [![MCP Compatible](https://img.shields.io/badge/MCP-Compatible-blue)](https://modelcontextprotocol.io)
5
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
5
 
7
6
  A Model Context Protocol (MCP) server that refines your prompts using PromptArchitect's AI-powered prompt engineering. Simply pass your current prompt and get an improved version back.
8
7
 
@@ -225,7 +224,6 @@ Any application supporting MCP can use this server. The standard configuration i
225
224
  |----------|-------|
226
225
  | Command | `npx` |
227
226
  | Args | `["@merabylabs/promptarchitect-mcp"]` |
228
- | Environment | `GEMINI_API_KEY` (optional) |
229
227
 
230
228
  For global installation, use `promptarchitect-mcp` as the command after running:
231
229
  ```bash
@@ -364,10 +362,6 @@ npm test
364
362
  ### Running Locally
365
363
 
366
364
  ```bash
367
- # With Gemini API
368
- GEMINI_API_KEY=your-key npm start
369
-
370
- # Without API (fallback mode)
371
365
  npm start
372
366
  ```
373
367
 
@@ -387,11 +381,13 @@ mcp-server/
387
381
 
388
382
  ## License
389
383
 
390
- MIT
384
+ Proprietary - © 2025 Meraby Labs. All rights reserved.
385
+
386
+ This software is provided for use exclusively with the PromptArchitect service. Unauthorized copying, modification, distribution, or use outside the intended scope is prohibited.
391
387
 
392
388
  ## Related
393
389
 
394
- - [PromptArchitect](https://github.com/promptarchitect) - Full web application
390
+ - [PromptArchitect](https://promptarchitectlabs.com/) - Full web application
395
391
  - [Model Context Protocol](https://modelcontextprotocol.io) - MCP specification
396
392
  - [MCP TypeScript SDK](https://github.com/modelcontextprotocol/typescript-sdk) - SDK used by this server
397
393
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@merabylabs/promptarchitect-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "MCP (Model Context Protocol) server for PromptArchitect - AI-powered prompt engineering tools for Claude, Cursor, VS Code, Windsurf, Zed & more",
5
5
  "keywords": [
6
6
  "mcp",
@@ -25,13 +25,13 @@
25
25
  "developer-tools",
26
26
  "code-assistant"
27
27
  ],
28
- "author": "PromptArchitect Team",
29
- "license": "MIT",
28
+ "author": "Meraby Labs",
29
+ "license": "SEE LICENSE IN LICENSE",
30
30
  "repository": {
31
31
  "type": "git",
32
32
  "url": "https://github.com/promptarchitect/mcp-server"
33
33
  },
34
- "homepage": "https://promptarchitect.com",
34
+ "homepage": "https://promptarchitectlabs.com",
35
35
  "bugs": {
36
36
  "url": "https://github.com/promptarchitect/mcp-server/issues"
37
37
  },