Skip to main content
Glama
RelayDigital

vremly

Official
by RelayDigital

vremly_request

Calls a Vremly API endpoint and returns its status and body. Authenticates with the organization's API key, respecting key permissions.

Instructions

Call a Vremly API endpoint and return its status and body. Authenticates with the configured organization API key; the organization is derived from that key, so it can only ever reach that organization's data, and the key's scopes decide what it may do (a READ key cannot write). Substitute real ids into the path — do not send {placeholders}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNoOptional JSON request body. Ignored for GET/HEAD/OPTIONS.
pathYesPath with real values substituted, e.g. "/projects/proj_123".
queryNoOptional query string parameters.
methodYesHTTP method, e.g. "GET" or "POST".

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the burden and does well by explaining authentication, organization scoping, and that key scopes determine write permissions. It stops short of detailing error behavior or specific side-effect warnings, but the contingent write capability is disclosed.

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?

The description is concise and front-loaded, with the core purpose in the first sentence followed by relevant authentication and usage notes. No redundant or filler content.

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?

The description gives enough context for an agent to use the tool: what it does, how authentication works, and what to substitute. It does not specify response formats beyond status/body, but for a generic request tool this is reasonably complete.

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?

Schema coverage is 100%, so the baseline is high. The description adds useful context by emphasizing path placeholder substitution and confirming that body/query are optional, which goes slightly beyond the schema descriptions.

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 clearly states the tool's function: calling a Vremly API endpoint and returning its status and body. This verb-focused purpose distinguishes it from sibling tools that search or describe endpoints.

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?

Provides some practical guidance, such as substituting real IDs and not sending placeholders, but does not explicitly mention when to prefer this tool over the sibling search/describe tools.

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