@automanus/mcp-server 1.1.0 → 1.2.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 +92 -18
- package/dist/index.js +3 -66
- package/dist/index.js.map +1 -1
- package/package.json +12 -3
package/README.md
CHANGED
|
@@ -1,10 +1,23 @@
|
|
|
1
1
|
# @automanus/mcp-server
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@automanus/mcp-server)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
**Create AI sales agents instantly from Claude Desktop, Cursor, or any MCP-compatible AI tool.**
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
AutoManus MCP Server lets you build and deploy AI sales chatbots to WhatsApp and Webchat in seconds - all from your favorite AI coding assistant.
|
|
9
|
+
|
|
10
|
+
## Features
|
|
11
|
+
|
|
12
|
+
- **Instant Agent Creation** - Just say "create a sales agent for [company]" and it's done
|
|
13
|
+
- **Auto Website Research** - Analyzes the company website and populates knowledge base automatically
|
|
14
|
+
- **WhatsApp + Webchat** - Agents deploy to both channels immediately
|
|
15
|
+
- **No Code Required** - Works entirely through natural language with Claude/Cursor
|
|
16
|
+
- **Free Tier** - 100 free credits to get started, no credit card required
|
|
17
|
+
|
|
18
|
+
## Quick Start
|
|
19
|
+
|
|
20
|
+
### Claude Desktop
|
|
8
21
|
|
|
9
22
|
Add to your Claude Desktop config file:
|
|
10
23
|
- **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
@@ -21,7 +34,10 @@ Add to your Claude Desktop config file:
|
|
|
21
34
|
}
|
|
22
35
|
```
|
|
23
36
|
|
|
24
|
-
|
|
37
|
+
Restart Claude Desktop, then try:
|
|
38
|
+
> "Create an AI sales agent for Stripe"
|
|
39
|
+
|
|
40
|
+
### Cursor
|
|
25
41
|
|
|
26
42
|
Add to `~/.cursor/mcp.json`:
|
|
27
43
|
|
|
@@ -36,13 +52,51 @@ Add to `~/.cursor/mcp.json`:
|
|
|
36
52
|
}
|
|
37
53
|
```
|
|
38
54
|
|
|
55
|
+
### Claude Code (CLI)
|
|
56
|
+
|
|
57
|
+
Add to `~/.claude/mcp.json`:
|
|
58
|
+
|
|
59
|
+
```json
|
|
60
|
+
{
|
|
61
|
+
"mcpServers": {
|
|
62
|
+
"automanus": {
|
|
63
|
+
"command": "npx",
|
|
64
|
+
"args": ["-y", "@automanus/mcp-server"]
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## Usage Examples
|
|
71
|
+
|
|
72
|
+
Once installed, just talk to Claude naturally:
|
|
73
|
+
|
|
74
|
+
```
|
|
75
|
+
"Create a sales agent for my startup TechCo using techco.com as the knowledge source"
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
```
|
|
79
|
+
"Build an AI sales chatbot for Vercel"
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
```
|
|
83
|
+
"I need a customer service bot for my cleaning business at sparkclean.com"
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Claude will:
|
|
87
|
+
1. Ask for your email (to send the agent claim link)
|
|
88
|
+
2. Research the website automatically
|
|
89
|
+
3. Create the agent with knowledge base
|
|
90
|
+
4. Deploy to WhatsApp and Webchat
|
|
91
|
+
5. Send you an email with links to manage everything
|
|
92
|
+
|
|
39
93
|
## Authentication
|
|
40
94
|
|
|
41
|
-
No configuration required
|
|
95
|
+
**No configuration required!** Claude will ask for your email when creating an agent.
|
|
42
96
|
|
|
43
97
|
### Optional: Pre-configure email
|
|
44
98
|
|
|
45
|
-
If you want to skip the email prompt
|
|
99
|
+
If you want to skip the email prompt:
|
|
46
100
|
|
|
47
101
|
```json
|
|
48
102
|
{
|
|
@@ -78,25 +132,45 @@ With an API key, agents are created directly under your account:
|
|
|
78
132
|
|
|
79
133
|
Get your API key from [automanus.io/dashboard](https://automanus.io/dashboard).
|
|
80
134
|
|
|
81
|
-
##
|
|
135
|
+
## What You Get
|
|
136
|
+
|
|
137
|
+
When you create an agent, you receive:
|
|
138
|
+
|
|
139
|
+
| Feature | Description |
|
|
140
|
+
|---------|-------------|
|
|
141
|
+
| **AI Sales Agent** | Trained on the company's website content |
|
|
142
|
+
| **WhatsApp Number** | Shareable link for customers to chat |
|
|
143
|
+
| **Webchat Widget** | Embed code for your website |
|
|
144
|
+
| **Knowledge Base** | Auto-populated from website research |
|
|
145
|
+
| **Dashboard Access** | Manage, train, and customize your agent |
|
|
146
|
+
|
|
147
|
+
## Use Cases
|
|
82
148
|
|
|
83
|
-
|
|
149
|
+
- **Sales Teams** - Qualify leads 24/7 on WhatsApp and website
|
|
150
|
+
- **Startups** - Add AI customer service without hiring
|
|
151
|
+
- **Agencies** - Build chatbots for clients in minutes
|
|
152
|
+
- **E-commerce** - Answer product questions automatically
|
|
153
|
+
- **SaaS** - Handle trial user questions and demos
|
|
84
154
|
|
|
85
|
-
|
|
155
|
+
## Pricing
|
|
86
156
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
157
|
+
| Plan | Credits | Features |
|
|
158
|
+
|------|---------|----------|
|
|
159
|
+
| **Free** | 100 | WhatsApp + Webchat, Basic KB |
|
|
160
|
+
| **Starter** | 1,000/mo | Priority support, Analytics |
|
|
161
|
+
| **Pro** | 5,000/mo | Custom branding, API access |
|
|
91
162
|
|
|
92
|
-
|
|
93
|
-
> Create an AI sales agent for Stripe
|
|
163
|
+
## Links
|
|
94
164
|
|
|
95
|
-
|
|
165
|
+
- [Documentation](https://automanus.io/docs/mcp)
|
|
166
|
+
- [Dashboard](https://automanus.io/dashboard)
|
|
167
|
+
- [API Reference](https://automanus.io/docs/api)
|
|
168
|
+
- [GitHub](https://github.com/ShenSeanChen/AutoManus)
|
|
96
169
|
|
|
97
|
-
##
|
|
170
|
+
## Support
|
|
98
171
|
|
|
99
|
-
|
|
172
|
+
- Email: hello@automanus.io
|
|
173
|
+
- GitHub Issues: [Report a bug](https://github.com/ShenSeanChen/AutoManus/issues)
|
|
100
174
|
|
|
101
175
|
## License
|
|
102
176
|
|
package/dist/index.js
CHANGED
|
@@ -41,47 +41,6 @@ const tools = [
|
|
|
41
41
|
required: ['company_name'],
|
|
42
42
|
},
|
|
43
43
|
},
|
|
44
|
-
{
|
|
45
|
-
name: 'add_knowledge',
|
|
46
|
-
description: 'Add a knowledge base item to an existing agent.',
|
|
47
|
-
inputSchema: {
|
|
48
|
-
type: 'object',
|
|
49
|
-
properties: {
|
|
50
|
-
agent_id: {
|
|
51
|
-
type: 'string',
|
|
52
|
-
description: 'Agent UUID',
|
|
53
|
-
},
|
|
54
|
-
title: {
|
|
55
|
-
type: 'string',
|
|
56
|
-
description: 'Item title (e.g., "Return Policy", "Pro Plan Features")',
|
|
57
|
-
},
|
|
58
|
-
content: {
|
|
59
|
-
type: 'string',
|
|
60
|
-
description: 'Item content/description',
|
|
61
|
-
},
|
|
62
|
-
item_type: {
|
|
63
|
-
type: 'string',
|
|
64
|
-
enum: ['product', 'faq', 'policy'],
|
|
65
|
-
description: 'Type of knowledge item',
|
|
66
|
-
},
|
|
67
|
-
},
|
|
68
|
-
required: ['agent_id', 'title', 'content'],
|
|
69
|
-
},
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
name: 'get_agent_status',
|
|
73
|
-
description: 'Get status of an agent including deployment info and knowledge base count.',
|
|
74
|
-
inputSchema: {
|
|
75
|
-
type: 'object',
|
|
76
|
-
properties: {
|
|
77
|
-
agent_id: {
|
|
78
|
-
type: 'string',
|
|
79
|
-
description: 'Agent UUID',
|
|
80
|
-
},
|
|
81
|
-
},
|
|
82
|
-
required: ['agent_id'],
|
|
83
|
-
},
|
|
84
|
-
},
|
|
85
44
|
];
|
|
86
45
|
// Get auth config from environment
|
|
87
46
|
function getAuthConfig() {
|
|
@@ -139,6 +98,8 @@ async function handleCreateSalesAgent(args) {
|
|
|
139
98
|
});
|
|
140
99
|
}
|
|
141
100
|
// Format successful response
|
|
101
|
+
// For new users, use claim_url for the dashboard link (dashboard_url requires auth)
|
|
102
|
+
const manageUrl = data.is_new_user ? data.claim_url : data.dashboard_url;
|
|
142
103
|
return JSON.stringify({
|
|
143
104
|
success: true,
|
|
144
105
|
agent_id: data.agent_id,
|
|
@@ -146,7 +107,7 @@ async function handleCreateSalesAgent(args) {
|
|
|
146
107
|
company_name: data.company_name,
|
|
147
108
|
webchat_embed_code: data.webchat_embed_code,
|
|
148
109
|
whatsapp_link: data.whatsapp_link,
|
|
149
|
-
dashboard_url:
|
|
110
|
+
dashboard_url: manageUrl, // Use claim URL for new users
|
|
150
111
|
knowledge_base_count: data.knowledge_base_count,
|
|
151
112
|
is_new_user: data.is_new_user,
|
|
152
113
|
claim_url: data.claim_url,
|
|
@@ -161,24 +122,6 @@ async function handleCreateSalesAgent(args) {
|
|
|
161
122
|
});
|
|
162
123
|
}
|
|
163
124
|
}
|
|
164
|
-
async function handleAddKnowledge(args) {
|
|
165
|
-
// Note: This would need an authenticated endpoint
|
|
166
|
-
// For now, return a message about the limitation
|
|
167
|
-
return JSON.stringify({
|
|
168
|
-
error: 'add_knowledge is not yet available via MCP',
|
|
169
|
-
hint: 'Use the AutoManus dashboard to add knowledge base items',
|
|
170
|
-
dashboard_url: `https://automanus.io/dashboard/ai-agent/${args.agent_id}`,
|
|
171
|
-
});
|
|
172
|
-
}
|
|
173
|
-
async function handleGetAgentStatus(args) {
|
|
174
|
-
// Note: This would need an authenticated endpoint
|
|
175
|
-
// For now, return a message about the limitation
|
|
176
|
-
return JSON.stringify({
|
|
177
|
-
error: 'get_agent_status is not yet available via MCP',
|
|
178
|
-
hint: 'Use the AutoManus dashboard to view agent status',
|
|
179
|
-
dashboard_url: `https://automanus.io/dashboard/ai-agent/${args.agent_id}`,
|
|
180
|
-
});
|
|
181
|
-
}
|
|
182
125
|
// Main server setup
|
|
183
126
|
async function main() {
|
|
184
127
|
const server = new Server({
|
|
@@ -201,12 +144,6 @@ async function main() {
|
|
|
201
144
|
case 'create_sales_agent':
|
|
202
145
|
result = await handleCreateSalesAgent(args);
|
|
203
146
|
break;
|
|
204
|
-
case 'add_knowledge':
|
|
205
|
-
result = await handleAddKnowledge(args);
|
|
206
|
-
break;
|
|
207
|
-
case 'get_agent_status':
|
|
208
|
-
result = await handleGetAgentStatus(args);
|
|
209
|
-
break;
|
|
210
147
|
default:
|
|
211
148
|
result = JSON.stringify({ error: `Unknown tool: ${name}` });
|
|
212
149
|
}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA;;;;;;;;;GASG;AAEH,OAAO,EAAE,MAAM,EAAE,MAAM,2CAA2C,CAAC;AACnE,OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAC;AACjF,OAAO,EACL,qBAAqB,EACrB,sBAAsB,GACvB,MAAM,oCAAoC,CAAC;AAE5C,MAAM,YAAY,GAAG,6BAA6B,CAAC;AAEnD,mBAAmB;AACnB,MAAM,KAAK,GAAG;IACZ;QACE,IAAI,EAAE,oBAAoB;QAC1B,WAAW,EACT,kKAAkK;QACpK,WAAW,EAAE;YACX,IAAI,EAAE,QAAiB;YACvB,UAAU,EAAE;gBACV,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,oGAAoG;iBAClH;gBACD,YAAY,EAAE;oBACZ,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,uBAAuB;iBACrC;gBACD,WAAW,EAAE;oBACX,IAAI,EAAE,QAAQ;oBACd,WAAW,EACT,oEAAoE;iBACvE;gBACD,UAAU,EAAE;oBACV,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,iEAAiE;iBAC/E;aACF;YACD,QAAQ,EAAE,CAAC,cAAc,CAAC;SAC3B;KACF;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automanus/mcp-server",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "MCP server for AutoManus - Create AI sales agents via Claude, Cursor, and other AI tools",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "MCP server for AutoManus - Create AI sales agents with WhatsApp and Webchat via Claude Desktop, Cursor, and other AI coding tools. Build sales chatbots instantly.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"bin": {
|
|
@@ -23,8 +23,17 @@
|
|
|
23
23
|
"automanus",
|
|
24
24
|
"ai-agent",
|
|
25
25
|
"sales-agent",
|
|
26
|
+
"chatbot",
|
|
27
|
+
"whatsapp-bot",
|
|
28
|
+
"webchat",
|
|
29
|
+
"ai-chatbot",
|
|
30
|
+
"sales-chatbot",
|
|
31
|
+
"customer-service",
|
|
32
|
+
"lead-generation",
|
|
26
33
|
"claude",
|
|
27
|
-
"
|
|
34
|
+
"claude-desktop",
|
|
35
|
+
"cursor",
|
|
36
|
+
"anthropic"
|
|
28
37
|
],
|
|
29
38
|
"author": "AutoManus <hello@automanus.io>",
|
|
30
39
|
"license": "MIT",
|