mcp-remote-ssh 0.2.0__tar.gz → 0.2.2__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.
- {mcp_remote_ssh-0.2.0/src/mcp_remote_ssh.egg-info → mcp_remote_ssh-0.2.2}/PKG-INFO +1 -1
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/pyproject.toml +1 -1
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2/src/mcp_remote_ssh.egg-info}/PKG-INFO +1 -1
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/LICENSE +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/README.md +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/setup.cfg +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh/__init__.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh/lifespan.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh/server/__init__.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh/server/connection.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh/server/execute.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh/server/forward.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh/server/helpers.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh/server/secrets.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh/server/sftp.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh/server/shell.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh/session.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh.egg-info/SOURCES.txt +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh.egg-info/dependency_links.txt +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh.egg-info/entry_points.txt +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh.egg-info/requires.txt +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh.egg-info/top_level.txt +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/tests/test_edge_cases.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/tests/test_redaction.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/tests/test_secrets_integration.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/tests/test_secrets_load.py +0 -0
- {mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/tests/test_secrets_parsing.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-remote-ssh
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: MCP server for remote SSH operations -- persistent sessions, structured command execution, SFTP file transfer, and port forwarding for AI agents.
|
|
5
5
|
Author: Mohammadfaiz Bawa
|
|
6
6
|
License-Expression: MIT
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "mcp-remote-ssh"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.2"
|
|
4
4
|
description = "MCP server for remote SSH operations -- persistent sessions, structured command execution, SFTP file transfer, and port forwarding for AI agents."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-remote-ssh
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: MCP server for remote SSH operations -- persistent sessions, structured command execution, SFTP file transfer, and port forwarding for AI agents.
|
|
5
5
|
Author: Mohammadfaiz Bawa
|
|
6
6
|
License-Expression: MIT
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mcp_remote_ssh-0.2.0 → mcp_remote_ssh-0.2.2}/src/mcp_remote_ssh.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|