goto-assistant 0.1.5 → 0.1.7
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 +33 -2
- package/package.json +1 -1
- package/public/setup.js +1 -0
package/README.md
CHANGED
|
@@ -11,7 +11,8 @@ npx goto-assistant
|
|
|
11
11
|
Open http://localhost:3000 — first run redirects to setup page for API key config.
|
|
12
12
|
|
|
13
13
|
### Requirements
|
|
14
|
-
- Node.js 20.11 or later
|
|
14
|
+
- [Node.js](https://nodejs.org/) 20.11 or later — `npx` runs the app and most MCP servers
|
|
15
|
+
- [uv](https://docs.astral.sh/uv/) — `uvx` runs the time MCP server (Python-based)
|
|
15
16
|
- Anthropic or OpenAI API key
|
|
16
17
|
|
|
17
18
|
### Data Storage
|
|
@@ -23,6 +24,35 @@ Custom location: `GOTO_DATA_DIR=/path/to/data npx goto-assistant`
|
|
|
23
24
|
PORT=3001 npx goto-assistant
|
|
24
25
|
```
|
|
25
26
|
|
|
27
|
+
## Why goto-assistant?
|
|
28
|
+
|
|
29
|
+
One command, no Docker, no framework — just MCP.
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
You
|
|
33
|
+
│
|
|
34
|
+
chat / ask
|
|
35
|
+
│
|
|
36
|
+
▼
|
|
37
|
+
┌───────────┐
|
|
38
|
+
│ AI │
|
|
39
|
+
│ Assistant │
|
|
40
|
+
└──┬──┬──┬──┘
|
|
41
|
+
│ │ │ │
|
|
42
|
+
│ │ │ └── create / update / run / ──▶ ┌───────┐
|
|
43
|
+
│ │ │ schedule / get results │ Cron │─ ─ ┐
|
|
44
|
+
│ │ └───── read / write ────────────▶ ┌─┴───────┴┐ │
|
|
45
|
+
│ │ │ Files │ │ AI tasks
|
|
46
|
+
│ └──────── remember / recall ───────▶ ┌┴──────────┴┐ │ w/ MCP
|
|
47
|
+
│ │ Memory │◀─┘ access
|
|
48
|
+
│ ├────────────┤
|
|
49
|
+
└────────── do anything ──────────────▶ │ + your │
|
|
50
|
+
│ MCP servers│
|
|
51
|
+
└────────────┘
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
That one `npx` command gives you an AI assistant that can remember across conversations, manage your files, and run tasks on a schedule or on-demand — all through the standard [MCP protocol](https://modelcontextprotocol.io). Add any MCP server to extend it further.
|
|
55
|
+
|
|
26
56
|
## Architecture
|
|
27
57
|
|
|
28
58
|
```
|
|
@@ -103,7 +133,8 @@ The assistant comes pre-configured with these MCP servers:
|
|
|
103
133
|
|--------|---------|-------------|
|
|
104
134
|
| **memory** | [`@modelcontextprotocol/server-memory`](https://github.com/modelcontextprotocol/servers/tree/main/src/memory) | Persistent knowledge graph across conversations |
|
|
105
135
|
| **filesystem** | [`@modelcontextprotocol/server-filesystem`](https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem) | Read, write, and manage local files |
|
|
106
|
-
| **
|
|
136
|
+
| **time** | [`mcp-server-time`](https://github.com/modelcontextprotocol/servers/tree/main/src/time) | Current time and timezone conversions |
|
|
137
|
+
| **cron** | [`mcp-cron`](https://github.com/jolks/mcp-cron) | Schedule or run on-demand shell commands and AI prompts with access to MCP servers |
|
|
107
138
|
|
|
108
139
|
Add your own through the setup page or by editing `data/mcp.json` directly. Any MCP server that supports stdio transport will work — browse the [MCP server directory](https://github.com/modelcontextprotocol/servers) for more.
|
|
109
140
|
|
package/package.json
CHANGED
package/public/setup.js
CHANGED
|
@@ -6,6 +6,7 @@ var defaultServers = [
|
|
|
6
6
|
{ name: 'cron', command: 'npx', args: '-y mcp-cron --transport stdio --prevent-sleep --mcp-config-path ./data/mcp.json --ai-provider anthropic --ai-model claude-sonnet-4-5-20250929', env: {} },
|
|
7
7
|
{ name: 'memory', command: 'npx', args: '-y @modelcontextprotocol/server-memory', env: {} },
|
|
8
8
|
{ name: 'filesystem', command: 'npx', args: '-y @modelcontextprotocol/server-filesystem .', env: {} },
|
|
9
|
+
{ name: 'time', command: 'uvx', args: 'mcp-server-time', env: {} },
|
|
9
10
|
];
|
|
10
11
|
|
|
11
12
|
// eslint-disable-next-line no-unused-vars
|