vssh 3.2.2__tar.gz → 3.3.0__tar.gz
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.
- vssh-3.3.0/PKG-INFO +73 -0
- vssh-3.3.0/README.md +50 -0
- {vssh-3.2.2 → vssh-3.3.0}/pyproject.toml +5 -5
- vssh-3.3.0/vssh.egg-info/PKG-INFO +73 -0
- {vssh-3.2.2 → vssh-3.3.0}/vssh.egg-info/SOURCES.txt +1 -0
- {vssh-3.2.2 → vssh-3.3.0}/vssh.egg-info/entry_points.txt +1 -0
- {vssh-3.2.2 → vssh-3.3.0}/vssh.egg-info/top_level.txt +1 -0
- vssh-3.3.0/vssh_mcp_server.py +762 -0
- vssh-3.2.2/PKG-INFO +0 -241
- vssh-3.2.2/README.md +0 -217
- vssh-3.2.2/vssh.egg-info/PKG-INFO +0 -241
- {vssh-3.2.2 → vssh-3.3.0}/LICENSE +0 -0
- {vssh-3.2.2 → vssh-3.3.0}/setup.cfg +0 -0
- {vssh-3.2.2 → vssh-3.3.0}/vssh.egg-info/dependency_links.txt +0 -0
- {vssh-3.2.2 → vssh-3.3.0}/vssh.py +0 -0
- {vssh-3.2.2 → vssh-3.3.0}/vssh_p2p.py +0 -0
- {vssh-3.2.2 → vssh-3.3.0}/vssh_p2p_fast.py +0 -0
- {vssh-3.2.2 → vssh-3.3.0}/vssh_quic.py +0 -0
vssh-3.3.0/PKG-INFO
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vssh
|
|
3
|
+
Version: 3.3.0
|
|
4
|
+
Summary: Secure SSH/SCP tool with Tailscale failover, P2P transport, and MCP server
|
|
5
|
+
Author-email: MeshPOP <hello@meshpop.dev>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/meshpop/vssh
|
|
8
|
+
Project-URL: Repository, https://github.com/meshpop/vssh
|
|
9
|
+
Keywords: ssh,scp,tailscale,p2p,vpn,mcp,remote
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: System Administrators
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
16
|
+
Classifier: Operating System :: MacOS
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Topic :: System :: Networking
|
|
19
|
+
Requires-Python: >=3.8
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Dynamic: license-file
|
|
23
|
+
|
|
24
|
+
# vssh
|
|
25
|
+
|
|
26
|
+
**Distributed SSH transport and file transfer daemon with zero external dependencies.**
|
|
27
|
+
|
|
28
|
+
Part of [MeshPOP](https://mpop.dev) — Layer 2 (Transport)
|
|
29
|
+
|
|
30
|
+
- Zero external dependencies — pure Python stdlib
|
|
31
|
+
- 50+ MB/s file transfer across WireGuard mesh
|
|
32
|
+
- MCP server for AI agent integration
|
|
33
|
+
|
|
34
|
+
## Install
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
pip install vssh
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Usage
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
# Execute remote command
|
|
44
|
+
vssh exec v1 "uptime"
|
|
45
|
+
|
|
46
|
+
# Transfer file at 50+ MB/s
|
|
47
|
+
vssh put v1 ./deploy.tar.gz /opt/deploy.tar.gz
|
|
48
|
+
|
|
49
|
+
# Check connection status
|
|
50
|
+
vssh status
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## MCP Setup
|
|
54
|
+
|
|
55
|
+
```json
|
|
56
|
+
{
|
|
57
|
+
"mcpServers": {
|
|
58
|
+
"vssh": { "command": "vssh-mcp" }
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Gives AI agents: `vssh_exec`, `vssh_put`, `vssh_get`, `vssh_status`, `vssh_keys`, `vssh_speed_test`
|
|
64
|
+
|
|
65
|
+
## Links
|
|
66
|
+
|
|
67
|
+
- Main project: [github.com/meshpop/mpop](https://github.com/meshpop/mpop)
|
|
68
|
+
- Website: [mpop.dev](https://mpop.dev)
|
|
69
|
+
- PyPI: [pypi.org/project/vssh](https://pypi.org/project/vssh/)
|
|
70
|
+
|
|
71
|
+
## License
|
|
72
|
+
|
|
73
|
+
MIT
|
vssh-3.3.0/README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# vssh
|
|
2
|
+
|
|
3
|
+
**Distributed SSH transport and file transfer daemon with zero external dependencies.**
|
|
4
|
+
|
|
5
|
+
Part of [MeshPOP](https://mpop.dev) — Layer 2 (Transport)
|
|
6
|
+
|
|
7
|
+
- Zero external dependencies — pure Python stdlib
|
|
8
|
+
- 50+ MB/s file transfer across WireGuard mesh
|
|
9
|
+
- MCP server for AI agent integration
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pip install vssh
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
# Execute remote command
|
|
21
|
+
vssh exec v1 "uptime"
|
|
22
|
+
|
|
23
|
+
# Transfer file at 50+ MB/s
|
|
24
|
+
vssh put v1 ./deploy.tar.gz /opt/deploy.tar.gz
|
|
25
|
+
|
|
26
|
+
# Check connection status
|
|
27
|
+
vssh status
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## MCP Setup
|
|
31
|
+
|
|
32
|
+
```json
|
|
33
|
+
{
|
|
34
|
+
"mcpServers": {
|
|
35
|
+
"vssh": { "command": "vssh-mcp" }
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Gives AI agents: `vssh_exec`, `vssh_put`, `vssh_get`, `vssh_status`, `vssh_keys`, `vssh_speed_test`
|
|
41
|
+
|
|
42
|
+
## Links
|
|
43
|
+
|
|
44
|
+
- Main project: [github.com/meshpop/mpop](https://github.com/meshpop/mpop)
|
|
45
|
+
- Website: [mpop.dev](https://mpop.dev)
|
|
46
|
+
- PyPI: [pypi.org/project/vssh](https://pypi.org/project/vssh/)
|
|
47
|
+
|
|
48
|
+
## License
|
|
49
|
+
|
|
50
|
+
MIT
|
|
@@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "vssh"
|
|
7
|
-
version = "3.
|
|
8
|
-
description = "Secure SSH/SCP tool with Tailscale failover and
|
|
7
|
+
version = "3.3.0"
|
|
8
|
+
description = "Secure SSH/SCP tool with Tailscale failover, P2P transport, and MCP server"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
11
11
|
requires-python = ">=3.8"
|
|
12
12
|
authors = [
|
|
13
13
|
{name = "MeshPOP", email = "hello@meshpop.dev"}
|
|
14
14
|
]
|
|
15
|
-
keywords = ["ssh", "scp", "tailscale", "p2p", "vpn", "remote"]
|
|
15
|
+
keywords = ["ssh", "scp", "tailscale", "p2p", "vpn", "mcp", "remote"]
|
|
16
16
|
classifiers = [
|
|
17
17
|
"Development Status :: 4 - Beta",
|
|
18
18
|
"Environment :: Console",
|
|
@@ -23,16 +23,16 @@ classifiers = [
|
|
|
23
23
|
"Operating System :: MacOS",
|
|
24
24
|
"Programming Language :: Python :: 3",
|
|
25
25
|
"Topic :: System :: Networking",
|
|
26
|
-
"Topic :: System :: Systems Administration",
|
|
27
26
|
]
|
|
28
27
|
dependencies = []
|
|
29
28
|
|
|
30
29
|
[project.scripts]
|
|
31
30
|
vssh = "vssh:main"
|
|
31
|
+
vssh-mcp = "vssh_mcp_server:main"
|
|
32
32
|
|
|
33
33
|
[project.urls]
|
|
34
34
|
Homepage = "https://github.com/meshpop/vssh"
|
|
35
35
|
Repository = "https://github.com/meshpop/vssh"
|
|
36
36
|
|
|
37
37
|
[tool.setuptools]
|
|
38
|
-
py-modules = ["vssh", "vssh_p2p", "vssh_p2p_fast", "vssh_quic"]
|
|
38
|
+
py-modules = ["vssh", "vssh_p2p", "vssh_p2p_fast", "vssh_quic", "vssh_mcp_server"]
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vssh
|
|
3
|
+
Version: 3.3.0
|
|
4
|
+
Summary: Secure SSH/SCP tool with Tailscale failover, P2P transport, and MCP server
|
|
5
|
+
Author-email: MeshPOP <hello@meshpop.dev>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/meshpop/vssh
|
|
8
|
+
Project-URL: Repository, https://github.com/meshpop/vssh
|
|
9
|
+
Keywords: ssh,scp,tailscale,p2p,vpn,mcp,remote
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: System Administrators
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
16
|
+
Classifier: Operating System :: MacOS
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Topic :: System :: Networking
|
|
19
|
+
Requires-Python: >=3.8
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Dynamic: license-file
|
|
23
|
+
|
|
24
|
+
# vssh
|
|
25
|
+
|
|
26
|
+
**Distributed SSH transport and file transfer daemon with zero external dependencies.**
|
|
27
|
+
|
|
28
|
+
Part of [MeshPOP](https://mpop.dev) — Layer 2 (Transport)
|
|
29
|
+
|
|
30
|
+
- Zero external dependencies — pure Python stdlib
|
|
31
|
+
- 50+ MB/s file transfer across WireGuard mesh
|
|
32
|
+
- MCP server for AI agent integration
|
|
33
|
+
|
|
34
|
+
## Install
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
pip install vssh
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Usage
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
# Execute remote command
|
|
44
|
+
vssh exec v1 "uptime"
|
|
45
|
+
|
|
46
|
+
# Transfer file at 50+ MB/s
|
|
47
|
+
vssh put v1 ./deploy.tar.gz /opt/deploy.tar.gz
|
|
48
|
+
|
|
49
|
+
# Check connection status
|
|
50
|
+
vssh status
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## MCP Setup
|
|
54
|
+
|
|
55
|
+
```json
|
|
56
|
+
{
|
|
57
|
+
"mcpServers": {
|
|
58
|
+
"vssh": { "command": "vssh-mcp" }
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Gives AI agents: `vssh_exec`, `vssh_put`, `vssh_get`, `vssh_status`, `vssh_keys`, `vssh_speed_test`
|
|
64
|
+
|
|
65
|
+
## Links
|
|
66
|
+
|
|
67
|
+
- Main project: [github.com/meshpop/mpop](https://github.com/meshpop/mpop)
|
|
68
|
+
- Website: [mpop.dev](https://mpop.dev)
|
|
69
|
+
- PyPI: [pypi.org/project/vssh](https://pypi.org/project/vssh/)
|
|
70
|
+
|
|
71
|
+
## License
|
|
72
|
+
|
|
73
|
+
MIT
|