Skip to main content
Glama
Shreesha4994

SAP BTP Cloud Foundry MCP Server

by Shreesha4994

cf_get_target

Retrieve the current Cloud Foundry target details, including API endpoint, organization, space, and user, to verify where commands will run.

Instructions

Get current Cloud Foundry target information (API endpoint, org, space, user)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, but it does establish this is a read operation returning current state rather than a mutation. It says nothing about authentication requirements, failure modes when no target is set, or whether the result is cached/live — modest but non-zero disclosure for a trivial query tool.

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

Conciseness5/5

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

One short sentence with the verb and resource front-loaded and the returned fields in a compact parenthetical. No filler, no redundancy.

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

Completeness4/5

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

For a zero-parameter read tool with no annotations and no output schema, the description covers purpose and the shape of the return value well enough to call it correctly. Only the routing guidance against cf_target/cf_login is missing.

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

Parameters4/5

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

The tool takes zero parameters, so the baseline of 4 applies. The description adds no parameter guidance, which is correct since there is nothing to parameterize.

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

Purpose4/5

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

States a specific verb ('Get') and resource ('Cloud Foundry target information') and enumerates the returned fields (API endpoint, org, space, user). The word 'current' signals a read of existing state, which helps separate it from the mutating cf_target sibling, though that contrast is never made explicit.

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

Usage Guidelines2/5

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

There is no statement of when to call this versus cf_target, cf_login, or cf_orgs/cf_spaces. The read-only nature and 'current' framing imply it is a status check, but the agent must infer that entirely.

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