Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
MCP SSH Server
Claim
by
shaike1
GitHub
File Systems
OS Automation
Security
TypeScript
5
Reddit
Discord
Overview
Inspect
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
.github
src
config.json
Dockerfile
.dockerignore
.eslintrc.json
.gitignore
install.js
jest.config.js
package.json
package-lock.json
README.md
tsconfig.json
FROM node:18-alpine WORKDIR /app COPY package*.json ./ RUN npm install COPY . . RUN npm run build ENV SSH_PORT=8889 ENV SSH_LOG_LEVEL=info EXPOSE 8889 CMD ["npm", "start"]