mcp-server-andru-intelligence 0.2.0 → 1.0.0

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
@@ -7,13 +7,13 @@ Works immediately — no pipeline data required. Describe your product and Andru
7
7
  ## Installation
8
8
 
9
9
  ```bash
10
- npm install -g @andru/mcp-server-intelligence
10
+ npm install -g mcp-server-andru-intelligence
11
11
  ```
12
12
 
13
13
  Or run directly:
14
14
 
15
15
  ```bash
16
- ANDRU_API_KEY=sk_live_... npx @andru/mcp-server-intelligence
16
+ ANDRU_API_KEY=sk_live_... npx mcp-server-andru-intelligence
17
17
  ```
18
18
 
19
19
  ## Configuration
@@ -25,7 +25,7 @@ ANDRU_API_KEY=sk_live_... npx @andru/mcp-server-intelligence
25
25
  | `ANDRU_API_KEY` | Yes | — | Your Andru Platform API key |
26
26
  | `ANDRU_API_URL` | No | `https://api.andru.ai` | API base URL |
27
27
 
28
- Get your API key at [app.andru.ai/settings/api-keys](https://app.andru.ai/settings/api-keys).
28
+ Get your API key at [platform.andru-ai.com/settings/api-keys](https://platform.andru-ai.com/settings/api-keys).
29
29
 
30
30
  ### Claude Desktop
31
31
 
@@ -36,7 +36,7 @@ Add to your `claude_desktop_config.json`:
36
36
  "mcpServers": {
37
37
  "andru-intelligence": {
38
38
  "command": "npx",
39
- "args": ["@andru/mcp-server-intelligence"],
39
+ "args": ["mcp-server-andru-intelligence"],
40
40
  "env": {
41
41
  "ANDRU_API_KEY": "sk_live_your_key_here"
42
42
  }
@@ -48,7 +48,7 @@ Add to your `claude_desktop_config.json`:
48
48
  ### Claude Code
49
49
 
50
50
  ```bash
51
- claude mcp add andru-intelligence npx @andru/mcp-server-intelligence \
51
+ claude mcp add andru-intelligence npx mcp-server-andru-intelligence \
52
52
  --env ANDRU_API_KEY=sk_live_your_key_here
53
53
  ```
54
54
 
@@ -102,7 +102,7 @@ claude mcp add andru-intelligence npx @andru/mcp-server-intelligence \
102
102
 
103
103
  Pass `productDescription`, `vertical`, and `targetRole` parameters, or let Claude infer them from your conversation. The tools use pre-built buyer intelligence (5 named buyer personas, 3 vertical segment profiles) to deliver results immediately.
104
104
 
105
- Run a full Pure Signal ICP pipeline at [app.andru.ai](https://app.andru.ai) for intelligence tuned to your specific product and market.
105
+ Run a full Pure Signal ICP pipeline at [platform.andru-ai.com](https://platform.andru-ai.com) for intelligence tuned to your specific product and market.
106
106
 
107
107
  ## Available Resources
108
108
 
@@ -125,9 +125,23 @@ Claude Desktop/Code → MCP Server (stdio) → Andru API (HTTPS)
125
125
  Andru also supports the Agent-to-Agent (A2A) protocol for direct agent-to-agent communication. The AgentCard is available at:
126
126
 
127
127
  ```
128
- https://api.andru.ai/.well-known/agent.json
128
+ https://platform.andru-ai.com/.well-known/agent.json
129
129
  ```
130
130
 
131
+ ## Also Available As
132
+
133
+ **Chrome Extension** — Sales intelligence on LinkedIn profiles, Gmail compose, and any company page. [Install from Chrome Web Store](https://platform.andru-ai.com/tools/chrome-extension).
134
+
135
+ ## Intelligence Briefs
136
+
137
+ Free signal reads for the questions technical founders ask at 11 PM:
138
+
139
+ - [I've Done 30 Customer Interviews and Still Can't Define My ICP](https://platform.andru-ai.com/intelligence/customer-interviews-icp)
140
+ - [I Know My ICP But My Outreach Still Isn't Working](https://platform.andru-ai.com/intelligence/icp-outreach-not-working)
141
+ - [My Pipeline Is Full of Companies That Like Us But Nobody's Buying Urgently](https://platform.andru-ai.com/intelligence/pipeline-no-urgency)
142
+ - [As a Technical Founder, What Am I Getting Wrong About Sales?](https://platform.andru-ai.com/intelligence/technical-founder-sales-mistakes)
143
+ - [Why Does My Messaging Fall Flat Even When I'm Talking to the Right Companies?](https://platform.andru-ai.com/intelligence/messaging-falls-flat)
144
+
131
145
  ## License
132
146
 
133
147
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-server-andru-intelligence",
3
- "version": "0.2.0",
3
+ "version": "1.0.0",
4
4
  "mcpName": "io.github.geter-andru/andru-intelligence",
5
5
  "description": "Buyer intelligence for technical founders who sell to enterprises — know who to target, what to say, and when to walk away. 15 MCP tools: ICP scoring, persona lookup, battlecards, deal classification, prospect discovery.",
6
6
  "type": "module",
@@ -36,5 +36,17 @@
36
36
  "homepage": "https://andru.ai",
37
37
  "bugs": {
38
38
  "url": "https://github.com/geter-andru/mcp-server-andru-intelligence/issues"
39
- }
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "scripts": {
44
+ "start": "node src/index.js",
45
+ "prepublishOnly": "node --input-type=module -e \"import {tools} from './src/catalog.js'; if(!tools?.length) {console.error('No tools in catalog'); process.exit(1)} console.log('Catalog OK:', tools.length, 'tools')\""
46
+ },
47
+ "files": [
48
+ "src/",
49
+ "README.md",
50
+ "LICENSE"
51
+ ]
40
52
  }
package/src/client.js CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  const DEFAULT_API_URL = 'https://api.andru.ai';
9
9
  const REQUEST_TIMEOUT_MS = 60_000; // 60s for AI-calling tools
10
- const PACKAGE_VERSION = '0.1.0';
10
+ const PACKAGE_VERSION = '0.2.0';
11
11
 
12
12
  export class AndruClient {
13
13
  /**
package/src/index.js CHANGED
@@ -11,14 +11,14 @@
11
11
  * ANDRU_API_URL (optional) — API base URL (default: https://api.andru.ai)
12
12
  *
13
13
  * Usage:
14
- * ANDRU_API_KEY=sk_live_... npx @andru/mcp-server-intelligence
14
+ * ANDRU_API_KEY=sk_live_... npx mcp-server-andru-intelligence
15
15
  *
16
16
  * Claude Desktop config (claude_desktop_config.json):
17
17
  * {
18
18
  * "mcpServers": {
19
19
  * "andru-intelligence": {
20
20
  * "command": "npx",
21
- * "args": ["@andru/mcp-server-intelligence"],
21
+ * "args": ["mcp-server-andru-intelligence"],
22
22
  * "env": {
23
23
  * "ANDRU_API_KEY": "sk_live_your_key_here"
24
24
  * }
package/src/server.js CHANGED
@@ -24,7 +24,7 @@ export function createServer(client) {
24
24
  const server = new Server(
25
25
  {
26
26
  name: 'andru-intelligence',
27
- version: '0.1.1',
27
+ version: '1.0.0',
28
28
  },
29
29
  {
30
30
  capabilities: {
package/glama.json DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "$schema": "https://glama.ai/mcp/schemas/server.json",
3
- "description": "Buyer intelligence for technical founders who sell to enterprises — know who to target, what to say, and when to walk away.",
4
- "maintainers": ["geter-andru"]
5
- }
package/server.json DELETED
@@ -1,36 +0,0 @@
1
- {
2
- "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
- "name": "io.github.geter-andru/andru-intelligence",
4
- "title": "Andru Revenue Intelligence",
5
- "description": "Buyer intelligence for technical founders who sell to enterprises — know who to target, what to say, and when to walk away. 15 tools: ICP scoring, persona lookup, battlecards, deal classification, prospect discovery.",
6
- "version": "0.2.0",
7
- "websiteUrl": "https://andru.ai",
8
- "repository": {
9
- "url": "https://github.com/geter-andru/mcp-server-andru-intelligence.git",
10
- "source": "github"
11
- },
12
- "packages": [
13
- {
14
- "registryType": "npm",
15
- "identifier": "mcp-server-andru-intelligence",
16
- "version": "0.2.0",
17
- "transport": {
18
- "type": "stdio"
19
- },
20
- "environmentVariables": [
21
- {
22
- "name": "ANDRU_API_KEY",
23
- "description": "Your Andru Platform API key. Get one at https://app.andru.ai/settings/api-keys",
24
- "isRequired": true,
25
- "isSecret": true
26
- },
27
- {
28
- "name": "ANDRU_API_URL",
29
- "description": "Andru API base URL (default: https://api.andru.ai)",
30
- "isRequired": false,
31
- "default": "https://api.andru.ai"
32
- }
33
- ]
34
- }
35
- ]
36
- }