We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TiM00R/remote-terminal'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
hosts.yaml.example•932 B
# Remote Terminal Hosts Configuration - EXAMPLE
# Copy this file to hosts.yaml and fill in your actual server details
# IMPORTANT: Keep hosts.yaml in .gitignore to protect passwords!
servers:
- name: example-server
host: 192.168.1.100
user: your_username
password: 'your_password'
port: 22
description: Example production server
tags:
- production
- primary
- name: dev-server
host: 192.168.1.101
user: developer
password: 'dev_password'
port: 22
description: Development environment
tags:
- development
- testing
- name: backup-server
host: backup.example.com
user: backup
password: 'backup_password'
port: 2222
description: Backup server (custom SSH port)
tags:
- backup
# Optional: Set default server (by name) for auto-connect
# This server will be marked as [DEFAULT] in list_servers
default_server: example-server