├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docker-compose.yml ├── package.json ├── src └── index.ts ├── test ├── maxChars.test.ts ├── persistent-connection.test.ts ├── smoke.ssh.test.ts ├── sudo-exec.test.ts └── zod.compat.test.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | package-lock.json linguist-generated=true -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/maxChars.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/test/maxChars.test.ts -------------------------------------------------------------------------------- /test/persistent-connection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/test/persistent-connection.test.ts -------------------------------------------------------------------------------- /test/smoke.ssh.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/test/smoke.ssh.test.ts -------------------------------------------------------------------------------- /test/sudo-exec.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/test/sudo-exec.test.ts -------------------------------------------------------------------------------- /test/zod.compat.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/test/zod.compat.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufantunc/ssh-mcp/HEAD/tsconfig.json --------------------------------------------------------------------------------