Skip to main content
Glama

Invoke CaaS / Cloud Container OpenAPI

invoke_caas_api
Destructive

Call Arvan CaaS 1.25 Kubernetes-style APIs using a zone, HTTP method, path, query, and body. Use concrete allowlisted endpoints; unknown paths are rejected.

Instructions

[OPENAPI] Full Arvan CaaS 1.25 (Kubernetes-style) on caas/v2/zones/{zone}. Pass concrete path e.g. /api/v1/namespaces/my-ns/pods. Allowlist: 299 ops from paas-1.25.json (Arvan CaaS 1.25). Rejects unknown paths — does not invent APIs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo
pathYesConcrete path matching OpenAPI paas-1.25.json (fill path params). Example templates exist in docs/discovery/openapi/.
zoneYesCaaS zone e.g. ir-tbz-sh1 or ir-thr-ba1
queryNo
methodYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.3

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare openWorldHint=true and destructiveHint=true. The description usefully adds that the tool is bounded to an allowlist and 'rejects unknown paths — does not invent APIs', which is real behavioral context. However it never warns that POST/PUT/PATCH/DELETE mutate cluster state or notes auth requirements, so it leaves meaningful gaps for a destructive open-world tool.

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?

Three short sentences, front-loaded with the resource scope, then the concrete-path guidance, then the allowlist boundary. Dense and waste-free, though the allowlist detail could be tightened.

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

Completeness3/5

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

For an open-world destructive proxy with no output schema, the description covers scope and the allowlist constraint but omits auth expectations, response shape, and error semantics. Adequate to attempt a call, incomplete for calling it confidently.

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

Parameters3/5

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

Schema description coverage is only 40%, so the description must compensate. It partially does for path (concrete-path example) and zone (embedded in the base path), but says nothing about the body or query objects, leaving half the parameters undocumented. Marginal value over the schema.

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+resource (invoke the Arvan CaaS 1.25 Kubernetes-style OpenAPI) and anchors it to the caas/v2/zones/{zone} base path, which distinguishes it from the other invoke_*_api siblings by domain. It stops short of explicitly naming which sibling to prefer over, but the scope is unambiguous.

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

Usage Guidelines3/5

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

Implies usage (call CaaS OpenAPI operations) and adds the constraint that only 299 allowlisted ops are accepted, but never states when to reach for this generic invoker versus a dedicated sibling like list_caas_pods or get_caas_pod. No exclusions or alternatives are named.

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

Deploy Server

Other Tools