spm-mcp 0.4.0 → 0.4.1

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
@@ -40,7 +40,7 @@ First run auto-detects no API key and walks you through setup:
40
40
  ### Option B: Manual setup
41
41
 
42
42
  ```bash
43
- # 1. Get your key at superproductmanager.ai > Profile > Generate API Key
43
+ # 1. Get your key at superproductmanager.ai?utm_source=npm&utm_medium=readme&utm_campaign=mcp > Profile > Generate API Key
44
44
  # 2. Set it
45
45
  export SPM_API_KEY=spm_k_your_key_here
46
46
  # 3. Run
@@ -51,7 +51,7 @@ npx spm-mcp
51
51
 
52
52
  For claude.ai web users, SPM is available as a remote MCP server:
53
53
 
54
- 1. Get your API key at [superproductmanager.ai](https://superproductmanager.ai) > Profile
54
+ 1. Get your API key at [superproductmanager.ai](https://superproductmanager.ai?utm_source=npm&utm_medium=readme&utm_campaign=mcp) > Profile
55
55
  2. In claude.ai, go to Settings > Integrations > Add MCP Server
56
56
  3. URL: `https://spm-mcp.superproductmanager.ai/mcp`
57
57
  4. Add header: `X-SPM-API-Key: spm_k_your_key_here`
@@ -177,13 +177,13 @@ API key resolution order: `SPM_API_KEY` env var > `~/.spm/config.json` > setup p
177
177
 
178
178
  ## Also available as
179
179
 
180
- - **Chrome extension.** Reviews documents inside Google Docs, Notion, ClickUp, Linear. [Install from Chrome Web Store](https://chromewebstore.google.com/detail/super-product-manager/ocpjfedoogmpbkhpojdkfdimkbiamihg)
181
- - **Web app.** Paste any document, full analysis in 30 seconds. [superproductmanager.ai](https://superproductmanager.ai)
180
+ - **Chrome extension.** Reviews documents inside Google Docs, Notion, ClickUp, Linear. [Install from Chrome Web Store](https://chromewebstore.google.com/detail/super-product-manager/ocpjfedoogmpbkhpojdkfdimkbiamihg?utm_source=npm&utm_medium=readme&utm_campaign=mcp)
181
+ - **Web app.** Paste any document, full analysis in 30 seconds. [superproductmanager.ai](https://superproductmanager.ai?utm_source=npm&utm_medium=readme&utm_campaign=mcp)
182
182
 
183
183
  ## Links
184
184
 
185
- - [Website](https://superproductmanager.ai)
186
- - [Chrome Extension](https://chromewebstore.google.com/detail/super-product-manager/ocpjfedoogmpbkhpojdkfdimkbiamihg)
185
+ - [Website](https://superproductmanager.ai?utm_source=npm&utm_medium=readme&utm_campaign=mcp)
186
+ - [Chrome Extension](https://chromewebstore.google.com/detail/super-product-manager/ocpjfedoogmpbkhpojdkfdimkbiamihg?utm_source=npm&utm_medium=readme&utm_campaign=mcp)
187
187
 
188
188
  ## License
189
189
 
package/dist/src/stdio.js CHANGED
@@ -18,7 +18,7 @@ import { homedir } from 'os';
18
18
  import { createInterface } from 'readline';
19
19
  const CONFIG_DIR = join(homedir(), '.spm');
20
20
  const CONFIG_PATH = join(CONFIG_DIR, 'config.json');
21
- const SETUP_URL = 'https://superproductmanager.web.app/#/profile';
21
+ const SETUP_URL = 'https://superproductmanager.web.app/#/profile?utm_source=npm&utm_medium=cli_setup&utm_campaign=mcp';
22
22
  function isInteractive() {
23
23
  return process.stdin.isTTY === true;
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spm-mcp",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Super Product Manager MCP Server - AI-powered product document analysis. Bring your own template or use 30 built-in expert reviews for PRDs, roadmaps, and PM documents.",
5
5
  "author": "Super Product Manager <chiranjeevi.gunturi@superproductmanager.ai>",
6
6
  "homepage": "https://superproductmanager.ai",
package/src/stdio.ts CHANGED
@@ -20,7 +20,7 @@ import { createInterface } from 'readline';
20
20
 
21
21
  const CONFIG_DIR = join(homedir(), '.spm');
22
22
  const CONFIG_PATH = join(CONFIG_DIR, 'config.json');
23
- const SETUP_URL = 'https://superproductmanager.web.app/#/profile';
23
+ const SETUP_URL = 'https://superproductmanager.web.app/#/profile?utm_source=npm&utm_medium=cli_setup&utm_campaign=mcp';
24
24
 
25
25
  function isInteractive(): boolean {
26
26
  return process.stdin.isTTY === true;