goto-assistant 0.1.6 → 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 +3 -1
- 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
|
|
@@ -132,6 +133,7 @@ The assistant comes pre-configured with these MCP servers:
|
|
|
132
133
|
|--------|---------|-------------|
|
|
133
134
|
| **memory** | [`@modelcontextprotocol/server-memory`](https://github.com/modelcontextprotocol/servers/tree/main/src/memory) | Persistent knowledge graph across conversations |
|
|
134
135
|
| **filesystem** | [`@modelcontextprotocol/server-filesystem`](https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem) | Read, write, and manage local files |
|
|
136
|
+
| **time** | [`mcp-server-time`](https://github.com/modelcontextprotocol/servers/tree/main/src/time) | Current time and timezone conversions |
|
|
135
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 |
|
|
136
138
|
|
|
137
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.
|
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
|