splashshell 0.3.0 → 0.4.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 +4 -2
- package/dist/splash.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,10 +20,12 @@ A universal MCP server that exposes any shell (bash, pwsh, powershell, cmd) as a
|
|
|
20
20
|
|
|
21
21
|
No global install is required — `npx` fetches and runs splashshell on demand. The only prerequisite is the [.NET 9 Desktop Runtime](https://dotnet.microsoft.com/download/dotnet/9.0) (the package bundles a ~5.6 MB native `splash.exe` that needs it).
|
|
22
22
|
|
|
23
|
+
> The `@latest` tag is important: without it, npx will happily keep reusing a stale cached copy even after a new version ships.
|
|
24
|
+
|
|
23
25
|
### Claude Code
|
|
24
26
|
|
|
25
27
|
```bash
|
|
26
|
-
claude mcp add-json splash -s user '{"command":"npx","args":["-y","splashshell"]}'
|
|
28
|
+
claude mcp add-json splash -s user '{"command":"npx","args":["-y","splashshell@latest"]}'
|
|
27
29
|
```
|
|
28
30
|
|
|
29
31
|
### Claude Desktop
|
|
@@ -35,7 +37,7 @@ Add to `%APPDATA%\Claude\claude_desktop_config.json`:
|
|
|
35
37
|
"mcpServers": {
|
|
36
38
|
"splash": {
|
|
37
39
|
"command": "npx",
|
|
38
|
-
"args": ["-y", "splashshell"]
|
|
40
|
+
"args": ["-y", "splashshell@latest"]
|
|
39
41
|
}
|
|
40
42
|
}
|
|
41
43
|
}
|
package/dist/splash.exe
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "splashshell",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Shared console MCP server for any shell (bash, pwsh, cmd) — AI and user work in the same terminal. Real-time command visibility, interactive prompt support, session persistence, multi-shell management with automatic cwd handoff.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Yoshifumi Tsuda",
|