From 8affc3ccb765a52c5d4c819b80ec79241ca1e995 Mon Sep 17 00:00:00 2001 From: oaslananka Date: Sun, 22 Mar 2026 06:52:45 +0300 Subject: [PATCH 1/2] feat: add mcp-ssh-tool --- servers/mcp-ssh-tool.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 servers/mcp-ssh-tool.json diff --git a/servers/mcp-ssh-tool.json b/servers/mcp-ssh-tool.json new file mode 100644 index 00000000..dc3f82e4 --- /dev/null +++ b/servers/mcp-ssh-tool.json @@ -0,0 +1,23 @@ +{ + "name": "mcp-ssh-tool", + "description": "SSH automation MCP server — remote command execution, file operations, service management over SSH", + "license": "MIT", + "author": { + "name": "Osman Aslan", + "url": "https://github.com/oaslananka" + }, + "homepage": "https://github.com/oaslananka/mcp-ssh-tool", + "repository": { + "type": "git", + "url": "https://github.com/oaslananka/mcp-ssh-tool" + }, + "packages": [ + { + "registryType": "npm", + "registryBaseUrl": "https://registry.npmjs.org", + "name": "mcp-ssh-tool", + "version": "latest", + "runtimeHint": "npx" + } + ] +} From f4572bbddee2ef816bbeaa8c14b001ce386dded8 Mon Sep 17 00:00:00 2001 From: oaslananka Date: Sun, 22 Mar 2026 06:58:21 +0300 Subject: [PATCH 2/2] fix: update server.json to match registry schema --- servers/mcp-ssh-tool.json | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/servers/mcp-ssh-tool.json b/servers/mcp-ssh-tool.json index dc3f82e4..05e29223 100644 --- a/servers/mcp-ssh-tool.json +++ b/servers/mcp-ssh-tool.json @@ -1,23 +1,20 @@ { - "name": "mcp-ssh-tool", - "description": "SSH automation MCP server — remote command execution, file operations, service management over SSH", - "license": "MIT", - "author": { - "name": "Osman Aslan", - "url": "https://github.com/oaslananka" - }, - "homepage": "https://github.com/oaslananka/mcp-ssh-tool", + "name": "io.github.oaslananka/mcp-ssh-tool", + "version": "1.3.0", "repository": { "type": "git", - "url": "https://github.com/oaslananka/mcp-ssh-tool" + "url": "https://github.com/oaslananka/mcp-ssh-tool", + "source": "github" }, "packages": [ { - "registryType": "npm", - "registryBaseUrl": "https://registry.npmjs.org", - "name": "mcp-ssh-tool", - "version": "latest", - "runtimeHint": "npx" + "identifier": "mcp-ssh-tool", + "runtimeHint": "npx", + "transport": { + "type": "node", + "command": "npx", + "args": ["mcp-ssh-tool"] + } } ] }