Skip to main content
Glama
tina4stack

Claude Pascal MCP Server

by tina4stack

list_remote_profiles

Lists PAServer connection profiles from RAD Studio, showing platform, host, port, and sidecar file status to troubleshoot 'Missing profile name' or 'No remote profile' errors.

Instructions

List PAServer Connection Profiles registered in this RAD Studio install.

These profiles drive iOS / macOS / Linux builds via PAServer on a remote Mac or Linux host. build_dproj uses them automatically (it picks the first compatible profile for the target platform), but listing them is useful when troubleshooting a "Missing profile name" or "No remote profile" error from MSBuild Deploy.

Each profile lists:

  • Name (what you pass as remote_profile=)

  • Platform tag (OSX64, iOSDevice64, Linux64 — used to filter for the target. An OSX64 profile is reusable for any Apple target.)

  • Host:port (where PAServer is listening)

  • Whether the sidecar .profile file exists at %APPDATA%\Embarcadero\BDS<ver><name>.profile. The sidecar is REQUIRED for Deploy to read the profile — if missing, open the profile in Connection Profile Manager once to write it.

Args: studio_root: Optional RAD Studio install root (e.g. r"C:\Program Files (x86)\Embarcadero\Studio\37.0"). Defaults to the highest-version install detected.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
studio_rootNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.13.6

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations available, the description carries full behavioral disclosure. It details the output profile fields (Name, Platform tag, Host:port, sidecar existence), explains platform filtering semantics, warns that the sidecar .profile file is REQUIRED, explains the default studio_root behavior, and notes profile reuse across Apple targets.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is longer than average but well-structured with a clear opening statement, useful behavioral bullets, and an explicit Args section. Every section earns its place, though some details could be tightened without loss.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-optional-parameter read-only listing tool with no annotations, the description is complete: purpose, usage context, parameter semantics, and behavioral quirks are all covered. The presence of an output schema means return-format details are not required in the description.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, but the description fully compensates by explaining the only parameter: studio_root with an example path, optionality, and default behavior (highest-version install detected). This gives an agent everything needed to populate or omit the parameter correctly.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with the exact function: 'List PAServer Connection Profiles registered in this RAD Studio install.' It names a specific resource (PAServer connection profiles) and a clear action (list), and distinguishes it from related tools like build_dproj and paserver_info by explaining its scoped scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives concrete usage context: profiles drive remote builds, build_dproj uses them automatically, and listing is useful when troubleshooting specific MSBuild Deploy errors like 'Missing profile name or 'No remote profile.' It does not explicitly state when NOT to use it or name alternatives, so it stops short of a perfect 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.