@mindstudio-ai/agent 0.1.0 → 0.1.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 +42 -6
- package/dist/cli.js +469 -50
- package/dist/index.d.ts +379 -2
- package/dist/index.js +135 -0
- package/dist/index.js.map +1 -1
- package/dist/postinstall.js +3522 -0
- package/llms.txt +168 -7
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -4,15 +4,35 @@ Every AI model. Every integration. One SDK.
|
|
|
4
4
|
|
|
5
5
|
[MindStudio](https://mindstudio.ai) gives you direct access to 200+ AI models and [1,000+ integrations](https://github.com/mindstudio-ai/mscr) — no separate API keys, no setup, no friction. This package is the developer toolkit: a TypeScript SDK, CLI, and MCP server that puts the entire platform at your fingertips.
|
|
6
6
|
|
|
7
|
-
Generate text, images, video, and audio. Scrape the web. Search Google. Post to Slack. Read from Airtable. Send emails. Process media.
|
|
7
|
+
Generate text, images, video, and audio. Scrape the web. Search Google. Post to Slack. Read from Airtable. Send emails. Process media. Run any of 850+ connector actions across third-party services. All with one API key, fully typed, and ready to use from code, the command line, or any MCP-compatible AI agent.
|
|
8
8
|
|
|
9
9
|
## Install
|
|
10
10
|
|
|
11
|
+
### CLI / MCP (standalone binary)
|
|
12
|
+
|
|
13
|
+
No dependencies required — downloads a standalone binary:
|
|
14
|
+
|
|
15
|
+
**macOS / Linux:**
|
|
16
|
+
```bash
|
|
17
|
+
curl -fsSL https://msagent.ai/install.sh | bash
|
|
18
|
+
mindstudio login
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
**Windows (PowerShell):**
|
|
22
|
+
```
|
|
23
|
+
irm https://msagent.ai/install.ps1 | iex
|
|
24
|
+
mindstudio login
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
To update, run the same command again. To uninstall, `rm /usr/local/bin/mindstudio` (macOS/Linux) or delete `%USERPROFILE%\.mindstudio\bin\mindstudio.exe` (Windows).
|
|
28
|
+
|
|
29
|
+
### SDK (npm)
|
|
30
|
+
|
|
11
31
|
```bash
|
|
12
32
|
npm install @mindstudio-ai/agent
|
|
13
33
|
```
|
|
14
34
|
|
|
15
|
-
Requires Node.js 18+.
|
|
35
|
+
Requires Node.js 18+. Also installs the CLI as `mindstudio`.
|
|
16
36
|
|
|
17
37
|
## Quick start
|
|
18
38
|
|
|
@@ -77,6 +97,22 @@ npx @mindstudio-ai/agent generate-text --message "Hello"
|
|
|
77
97
|
|
|
78
98
|
Add to your MCP client config (Claude Code, Cursor, VS Code, etc.):
|
|
79
99
|
|
|
100
|
+
**With standalone binary** (recommended — faster startup, no Node required):
|
|
101
|
+
```json
|
|
102
|
+
{
|
|
103
|
+
"mcpServers": {
|
|
104
|
+
"mindstudio": {
|
|
105
|
+
"command": "mindstudio",
|
|
106
|
+
"args": ["mcp"],
|
|
107
|
+
"env": {
|
|
108
|
+
"MINDSTUDIO_API_KEY": "your-api-key"
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
**With npx** (no install needed):
|
|
80
116
|
```json
|
|
81
117
|
{
|
|
82
118
|
"mcpServers": {
|
|
@@ -154,7 +190,7 @@ Model types: `llm_chat`, `image_generation`, `video_generation`, `video_analysis
|
|
|
154
190
|
|
|
155
191
|
## 1,000+ integrations
|
|
156
192
|
|
|
157
|
-
850+
|
|
193
|
+
850+ connector actions from the open-source [MindStudio Connector Registry (MSCR)](https://github.com/mindstudio-ai/mscr) — across services like ActiveCampaign, Airtable, Apollo, Canva, ElevenLabs, MailChimp, Notion, and more — alongside 140+ built-in actions for AI, media, web, and data processing.
|
|
158
194
|
|
|
159
195
|
```typescript
|
|
160
196
|
// Browse connectors and their actions
|
|
@@ -454,14 +490,14 @@ Start manually:
|
|
|
454
490
|
mindstudio mcp
|
|
455
491
|
```
|
|
456
492
|
|
|
457
|
-
Or configure your MCP client:
|
|
493
|
+
Or configure your MCP client (standalone binary or npx):
|
|
458
494
|
|
|
459
495
|
```json
|
|
460
496
|
{
|
|
461
497
|
"mcpServers": {
|
|
462
498
|
"mindstudio": {
|
|
463
|
-
"command": "
|
|
464
|
-
"args": ["
|
|
499
|
+
"command": "mindstudio",
|
|
500
|
+
"args": ["mcp"],
|
|
465
501
|
"env": {
|
|
466
502
|
"MINDSTUDIO_API_KEY": "your-api-key"
|
|
467
503
|
}
|