@automanus/mcp-server 1.0.0 → 1.0.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 +86 -0
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# @automanus/mcp-server
|
|
2
|
+
|
|
3
|
+
MCP server for AutoManus - Create AI sales agents via Claude, Cursor, and other AI tools.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
### For Claude Desktop
|
|
8
|
+
|
|
9
|
+
Add to your `claude_desktop_config.json`:
|
|
10
|
+
|
|
11
|
+
```json
|
|
12
|
+
{
|
|
13
|
+
"mcpServers": {
|
|
14
|
+
"automanus": {
|
|
15
|
+
"command": "npx",
|
|
16
|
+
"args": ["-y", "@automanus/mcp-server"],
|
|
17
|
+
"env": {
|
|
18
|
+
"AUTOMANUS_EMAIL": "your-email@example.com"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### For Cursor
|
|
26
|
+
|
|
27
|
+
Add to your Cursor MCP settings:
|
|
28
|
+
|
|
29
|
+
```json
|
|
30
|
+
{
|
|
31
|
+
"mcpServers": {
|
|
32
|
+
"automanus": {
|
|
33
|
+
"command": "npx",
|
|
34
|
+
"args": ["-y", "@automanus/mcp-server"],
|
|
35
|
+
"env": {
|
|
36
|
+
"AUTOMANUS_EMAIL": "your-email@example.com"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Authentication
|
|
44
|
+
|
|
45
|
+
Choose one of these authentication methods:
|
|
46
|
+
|
|
47
|
+
### Option 1: Email-based (Recommended for new users)
|
|
48
|
+
|
|
49
|
+
```json
|
|
50
|
+
"env": {
|
|
51
|
+
"AUTOMANUS_EMAIL": "your-email@example.com"
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
You'll receive an email to claim your agent after creation.
|
|
56
|
+
|
|
57
|
+
### Option 2: API Key (For existing users)
|
|
58
|
+
|
|
59
|
+
```json
|
|
60
|
+
"env": {
|
|
61
|
+
"AUTOMANUS_API_KEY": "ak_your_api_key_here"
|
|
62
|
+
}
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Get your API key from [automanus.io/dashboard](https://automanus.io/dashboard).
|
|
66
|
+
|
|
67
|
+
## Available Tools
|
|
68
|
+
|
|
69
|
+
### `create_agent`
|
|
70
|
+
|
|
71
|
+
Create an AI sales agent for any company.
|
|
72
|
+
|
|
73
|
+
**Parameters:**
|
|
74
|
+
- `company_name` (required): Name of the company
|
|
75
|
+
- `website_url` (required): Company website URL
|
|
76
|
+
|
|
77
|
+
**Example prompt:**
|
|
78
|
+
> Create an AI sales agent for Stripe with website https://stripe.com
|
|
79
|
+
|
|
80
|
+
## Documentation
|
|
81
|
+
|
|
82
|
+
Full documentation at [automanus.io/docs/mcp](https://automanus.io/docs/mcp)
|
|
83
|
+
|
|
84
|
+
## License
|
|
85
|
+
|
|
86
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automanus/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "MCP server for AutoManus - Create AI sales agents via Claude, Cursor, and other AI tools",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
11
|
"files": [
|
|
12
|
-
"dist"
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md"
|
|
13
14
|
],
|
|
14
15
|
"scripts": {
|
|
15
16
|
"build": "tsc",
|