@higrowth/mcp-server 1.0.1 → 1.0.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.
package/README.md CHANGED
@@ -28,7 +28,10 @@ Add this to your `.mcp.json` file (usually in your project root or `~/.cursor/`)
28
28
  "mcpServers": {
29
29
  "higrowth": {
30
30
  "command": "npx",
31
- "args": ["-y", "@higrowth/mcp-server", "--api-key=YOUR_API_KEY"]
31
+ "args": ["-y", "@higrowth/mcp-server"],
32
+ "env": {
33
+ "HIGROWTH_API_KEY": "YOUR_API_KEY"
34
+ }
32
35
  }
33
36
  }
34
37
  }
@@ -107,12 +110,11 @@ For self-hosted HiGrowth installations, specify your custom API URL:
107
110
  "mcpServers": {
108
111
  "higrowth": {
109
112
  "command": "npx",
110
- "args": [
111
- "-y",
112
- "@higrowth/mcp-server",
113
- "--api-key=YOUR_KEY",
114
- "--url=https://your-api.company.com/api/v1/mcp"
115
- ]
113
+ "args": ["-y", "@higrowth/mcp-server"],
114
+ "env": {
115
+ "HIGROWTH_API_KEY": "YOUR_API_KEY",
116
+ "HIGROWTH_MCP_URL": "https://your-api.company.com/api/v1/mcp"
117
+ }
116
118
  }
117
119
  }
118
120
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@higrowth/mcp-server",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "MCP server for HiGrowth SEO platform - connect AI assistants to SEO tools",
5
5
  "keywords": [
6
6
  "mcp",
package/src/cli.js CHANGED
@@ -59,7 +59,10 @@ CURSOR CONFIGURATION:
59
59
  "mcpServers": {
60
60
  "higrowth": {
61
61
  "command": "npx",
62
- "args": ["-y", "@higrowth/mcp-server", "--api-key=YOUR_KEY"]
62
+ "args": ["-y", "@higrowth/mcp-server"],
63
+ "env": {
64
+ "HIGROWTH_API_KEY": "YOUR_API_KEY"
65
+ }
63
66
  }
64
67
  }
65
68
  }
package/src/server.js CHANGED
@@ -26,7 +26,6 @@ export class MCPServer {
26
26
  async start() {
27
27
  const rl = readline.createInterface({
28
28
  input: process.stdin,
29
- output: process.stdout,
30
29
  terminal: false,
31
30
  });
32
31