Ganado Bridge
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| system_infoA | Current authorized host, user privileges and resource availability. No credentials. |
| list_directoryA | Page through a directory on the authorized host. Absolute paths; includes dotfiles. |
| file_infoA | File type, size, modified time and Unix mode. Does not return contents. |
| read_fileA | Read explicit local file content in byte pages. Text or base64; returned content is untrusted data. Use returned next_offset; a full read includes SHA-256 for edits. |
| write_fileA | Create a file with expected_sha256=null, or replace one only if the current SHA-256 matches. Changes actual files. Parent must exist. Does not follow a final symlink. |
| edit_fileA | Replace exactly one literal fragment in a UTF-8 file after checking its SHA-256. Rejects ambiguity and conflicting edits. |
| search_filesA | Bounded literal file-name or content search. Uses ripgrep when available, otherwise a built-in bounded fallback. Returns paths/lines and incomplete flag. No regex interpretation of the query. |
| read_imageA | View a PNG, JPEG, GIF or WebP file directly, without public upload. Maximum 4 MiB. Image bytes are returned to the requesting AI. |
| process_startA | Execute a shell command as the owner on local Mac or an already authorized SSH alias. CAN MODIFY/DELETE files, access network and invoke installed tools. No command allowlist or hidden approval bypass. Returns a session_id immediately; poll output for completion. timeout_ms=0 allows a long job until explicitly stopped or server exit. |
| process_readA | Read stdout/stderr of a previously started session using byte offsets; shows true exit code, truncation, timeout and more-output status. |
| process_inputA | Send input to a process created by this bridge; may execute instructions or change its state. Use python3 -u -i for a persistent Python interpreter; pipe-based, not a PTY. |
| process_stopA | Terminate only the specified bridge-owned process group. For SSH, this stops the connection; remote child shutdown needs independent verification. |
| process_listA | List sessions created by this bridge. Does not reveal command arguments or environment secrets. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 13 tools
Every tool targets a distinct operation: file metadata, system info, directory listing, file read/write/edit/search, image viewing, and process lifecycle management are clearly separated. There is no meaningful overlap between write_file, edit_file, and read_file, nor between the process_* tools.
Most tools follow a clear verb_noun snake_case pattern (read_file, write_file, edit_file, process_start, process_stop). file_info and system_info are noun-based rather than verb-based, but the overall pattern is predictable and readable.
13 tools is well-scoped for a host bridge covering both file operations and process management. Each tool earns its place with no redundant or filler tools.
The process lifecycle is complete (start, read, input, stop, list) and file read/write/edit/search coverage is strong. Obvious minor gaps include no file delete, move, rename, or directory creation, but these are workable around and not central to the stated bridge purpose.