Skip to main content
Glama

Apideck MCP

execute_tool

Invoke a tool by name. input is forwarded raw to the tool handler.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesExact tool name to invoke (e.g. "accounting-invoices-create"), as returned by list_tools.
inputNoArguments object forwarded verbatim to the target tool. Its shape matches that tool's input schema (fetch it with describe_tool_input). Omit for tools that take no arguments.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed7 schema fields changed
    • removedInput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
    • addedInput schema / properties / input / additionalProperties
      Added value: +{}
    • addedInput schema / properties / input / description
      Added value: +"Arguments object forwarded verbatim to the target tool. Its shape matches that tool's input schema (fetch it with describe_tool_input). Omit for tools that take no arguments."
    • addedInput schema / properties / input / propertyNames
      Added value: +{
      +  "type": "string"
      +}
    • addedInput schema / properties / input / type
      Added value: +"object"
    • addedInput schema / properties / name / description
      Added value: +"Exact tool name to invoke (e.g. \"accounting-invoices-create\"), as returned by list_tools."
    • changedInput schema / required
      Previous value: -[
      -  "name",
      -  "input"
      -]New value: +[
      +  "name"
      +]
  2. Changed4 schema fields changed
    • removedInput schema / properties / arguments
      Removed value: -{
      -  "additionalProperties": {},
      -  "description": "Arguments for the target tool as a JSON object, matching the schema returned by describe_tool_input.",
      -  "properties": {},
      -  "type": "object"
      -}
    • addedInput schema / properties / input
      Added value: +{}
    • removedInput schema / properties / name / description
      Removed value: -"The name of the tool to execute"
    • changedInput schema / required
      Previous value: -[
      -  "name"
      -]New value: +[
      +  "name",
      +  "input"
      +]
  3. Changed5 schema fields changed
    • addedInput schema / properties / arguments
      Added value: +{
      +  "additionalProperties": {},
      +  "description": "Arguments for the target tool as a JSON object, matching the schema returned by describe_tool_input.",
      +  "properties": {},
      +  "type": "object"
      +}
    • removedInput schema / properties / input
      Removed value: -{
      -  "additionalProperties": {},
      -  "description": "Input parameters for the tool as a JSON object",
      -  "propertyNames": {
      -    "type": "string"
      -  },
      -  "type": "object"
      -}
    • addedInput schema / properties / name
      Added value: +{
      +  "description": "The name of the tool to execute",
      +  "type": "string"
      +}
    • removedInput schema / properties / tool_name
      Removed value: -{
      -  "description": "The name of the tool to execute",
      -  "type": "string"
      -}
    • changedInput schema / required
      Previous value: -[
      -  "tool_name"
      -]New value: +[
      +  "name"
      +]
  4. First observed

TDQS

A3.8/5.0
Behavior4/5

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

The description discloses that input is 'forwarded raw,' which is a behavioral detail beyond what annotations alone convey (e.g., openWorldHint, readOnlyHint). This tells agents that arguments are not preprocessed, which is essential for constructing valid input. No contradictions with annotations exist.

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 two sentences, front-loaded with the core purpose and free of redundant information. Every word earns its place, and the structure is clean and scannable.

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 tool is a dynamic dispatcher with rich schema descriptions and annotations covering side-effect hints, so the description is largely sufficient. It does not describe the return value or error behavior, but those are inherently dependent on the invoked tool and less critical given the schema's thoroughness. A slightly more explicit note about behavior varying by target tool would improve it.

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 coverage is 100% as both parameters have detailed descriptions, so the baseline is 3. The description adds little beyond the schema, as 'forwarded raw' essentially repeats the schema's 'forwarded verbatim' for the input parameter. No additional parameter semantics are provided.

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 with a specific verb and resource: 'Invoke a tool by name.' This distinguishes it from sibling tools like list_tools or describe_tool_input, which inspect rather than execute. The additional phrase about forwarding input raw further clarifies the tool's role.

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?

The description provides no guidance on when to use this tool versus alternatives. It does not mention prerequisites, such as looking up the tool name with list_tools or fetching the input schema with describe_tool_input. Those details appear only in the schema property descriptions, not in the main description.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation5/5

Each tool serves a distinct purpose: discovering tools, describing inputs, executing tools, and listing scopes. There is no overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case (list_tools, describe_tool_input, execute_tool, list_scopes), making them predictable.

Tool Count4/5

With 4 tools covering discovery, description, execution, and permission scoping, the set is concise and appropriate for a meta-tool server, though slightly minimal.

Completeness5/5

The tool surface fully covers the required operations for managing and using tools: listing, describing, executing, and checking scopes, with no obvious gaps.

Resources