From remotelink
This skill should be used when the user asks to "set up RemoteLink", "configure RemoteLink", "connect to RemoteLink", "install RemoteLink plugin", "get started with RemoteLink", or needs help setting the REMOTELINK_URL environment variable. Also applies when the user reports "MCP server not connecting", "REMOTELINK_URL not found", "fix RemoteLink connection", or other RemoteLink MCP connection issues.
How this skill is triggered — by the user, by Claude, or both
Slash command
/remotelink:setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Configure the `REMOTELINK_URL` environment variable required by the RemoteLink MCP server.
Configure the REMOTELINK_URL environment variable required by the RemoteLink MCP server.
https://your-server.example.com)Ask the user for their RemoteLink Admin URL. This is the base URL without any path — for example, https://your-server.example.com (not https://your-server.example.com/mcp). The plugin appends /mcp automatically.
Before setting the variable, validate the URL: strip any trailing slash or path segments (e.g., /mcp, /Admin). The value should be just the scheme and host like https://your-server.example.com.
The REMOTELINK_URL environment variable must be available to Claude Code at startup.
Option A: Claude Code settings (recommended)
Add to the user's Claude Code settings via the env field in ~/.claude/settings.json:
{
"env": {
"REMOTELINK_URL": "https://your-server.example.com"
}
}
Option B: Shell profile
For bash/zsh, append to the appropriate profile file (~/.bashrc, ~/.zshrc, or ~/.bash_profile):
export REMOTELINK_URL="https://your-server.example.com"
For PowerShell, add to $PROFILE:
$env:REMOTELINK_URL = "https://your-server.example.com"
After setting via shell profile, restart the terminal and Claude Code.
After setting the environment variable and restarting Claude Code, verify the MCP server connects by running /mcp and checking that the remotelink server shows as connected with its tools available (search, get_doc, query_database, execute_script).
curl <REMOTELINK_URL>/mcp — it should respond (not timeout or 404).echo $REMOTELINK_URL in the Claude Code terminal.Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub unwiredrevolution/uwr-marketplace --plugin remotelink