Remote Link Local MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| REMOTE_LINK_MODE | No | Controls the permission mode. Accepts 'safe' (default), 'developer', or 'full'. | safe |
| REMOTE_LINK_ALLOW_CORE_CALL | No | Set to '1' to enable full raw-core access. Requires REMOTE_LINK_MODE=full. |
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 |
|---|---|
| remote_link_statusA | Show the active Remote Link permission mode and local execution backend. This does not modify the computer. |
| list_directoryA | List files and directories on the connected computer through the Desktop Commander execution core. |
| read_fileA | Read a local file through the Desktop Commander execution core. Large files should be paged with offset and length. |
| get_file_infoA | Get metadata about a local file or directory without modifying it. |
| list_processesA | List processes running on the connected computer. This does not terminate or modify processes. |
| core_list_toolsA | List tools currently exposed by the local Desktop Commander core. Useful for compatibility diagnostics. |
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 6 tools
Each tool targets a distinct concern: connection status, directory listing, file reading, file metadata, process listing, and core tool enumeration. There is no meaningful overlap between any two tools.
Most tools follow a verb_noun pattern (list_directory, read_file, get_file_info, list_processes). The exceptions are remote_link_status, which is noun_noun, and core_list_tools, which has a prefix before the verb; these are minor deviations.
Six tools is a well-scoped collection for a read-only remote diagnostics and file access server. Each tool serves a clear purpose without bloat or redundancy.
For the apparent read-only diagnostic scope, the surface is complete: status, file browsing, file reading, metadata, process listing, and core tool discovery are all covered. No obvious dead ends or missing operations within this intended domain.