Skip to main content
Glama

Jentic Remote MCP Server

Execute Operation

execute
Destructive

Use this tool to execute the chosen action for the user using the provided details. Always include inputs even if there are none. To reduce context, use include_paths to return only the fields you need from the output.

DEPRECATION NOTICE: This tool is being deprecated on 20 September 2026. Execution is moving to self-hosted Jentic One. It still works for now but will stop working on that date. To keep running operations, install Jentic One (https://jentic.com/jentic-one) and execute through its local broker. For a step-by-step install and onboarding guide, fetch the 'skill://onboard-jentic-one' MCP resource.

Example operation UUIDs (from search_apis / load_execution_info): NewsAPI.org GET /everything: op_ba86fdce1bade1b7 NewsAPI.org GET /top-headlines: op_8ae297966b7f6da3 Finnhub.io GET /quote: op_f97a5db5e23f7b5a Coincap.io GET /v3/assets/"slug": op_e4a7f50d57fee805

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsYesDictionary containing: - uuid (str, required): The UUID of the operation to execute (e.g., "op_..." or "wf_...") - inputs (dict, required): Input parameters for the execution - include_paths (list[str], optional): Dot-notation paths to include from output (e.g. ["articles"] or ["results.*.title"] or ["parts.0.body.data"]). Defaults to full output.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare destructiveHint=true and readOnlyHint=false, so the description does not need to repeat that this is a mutating operation. The description adds useful behavioral details like the requirement to always include 'inputs' even when empty, and the ability to 'include_paths' to reduce output size. However, it doesn't explain potential side effects, error handling, or rate limits, and the deprecation notice is more about lifecycle than behavior. Given the annotations cover the main safety profile, this is adequate but not exceptional.

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 due to the deprecation notice and example UUIDs, but each section serves a purpose. It is front-loaded with the main purpose, then usage tips, then deprecation, then examples. The structure is logical and not padded. It could arguably be condensed by moving deprecation to annotations, but it's not excessively verbose.

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 complex with nested objects and an output schema, so the description doesn't need to explain return values. It covers how to obtain UUIDs (via search_apis/load_execution_info), the need for inputs, the use of include_paths, and the deprecation plan with migration instructions. It is fairly complete for a tool of this complexity, though it could benefit from mentioning that credentials are needed (since list_credentials is a sibling) or what happens on error.

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?

The schema description covers 100% of the parameters (uuid, inputs, include_paths) with detailed explanations. The description adds a useful tip: 'Always include inputs even if there are none.' That goes beyond the schema and helps avoid errors. Since the schema already does most of the heavy lifting, the description's contribution is marginal but positive, so the baseline of 3 is appropriate.

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 purpose: 'Use this tool to execute the chosen action for the user using the provided details.' It distinguishes itself from sibling tools (list_credentials, load_execution_info, search_apis) by being the execution step, and gives concrete example operation UUIDs sourced from those tools, making the tool's role unambiguous.

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?

The description provides clear context for when to use the tool (when you have an operation UUID and inputs) and even includes deprecation guidance with an alternative (Jentic One). It indirectly suggests using search_apis/load_execution_info to obtain UUIDs, but does not explicitly state 'use this only after you have a UUID' or include explicit exclusions. Still, the guidance is useful and mostly clear.

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.2/5.0
Disambiguation4/5

The four tools have distinct purposes: search_apis discovers operations, load_execution_info fetches operation contracts, execute runs them, and list_credentials handles authentication info. There is mild overlap between search_apis and list_credentials (both reveal available APIs), but they serve different needs—discovery vs. credential access—so the boundaries are mostly clear.

Naming Consistency5/5

All tool names follow a consistent lowercase_with_underscores convention. Three use verb_noun patterns (list_credentials, load_execution_info, search_apis) and one is a simple verb (execute), but the style is uniform and predictable. No mixing of conventions or vague names.

Tool Count4/5

With 4 tools, the server is tightly scoped to the API execution workflow (search, inspect, execute, credentials). This is a reasonable count for the domain—not too thin to feel incomplete, and each tool earns its place without redundancy.

Completeness4/5

The core lifecycle is covered: search_apis discovers operations, load_execution_info provides full contracts, execute runs them, and list_credentials covers authentication. There are no major gaps for the stated purpose of remote API execution, though a tool to manage or create credentials might be a minor addition.

Resources