Skip to main content
Glama

Jentic Remote MCP Server

Load Execution Info

load_execution_info
Read-onlyIdempotent

Use this tool to get the full execution contract for a specific operation (its inputs, outputs, and authentication requirements). This tool must use the operation UUIDs returned from the search_apis tool.

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 load an operation's contract and run it, install Jentic One (https://jentic.com/jentic-one) and use its jentic inspect / jentic execute flow. For a step-by-step install and onboarding guide, fetch the 'skill://onboard-jentic-one' MCP resource.

Example operation UUIDs (returned from search_apis tool): 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
requestYesDictionary containing: - operation_uuids (list[str] | str): UUID(s) of operation(s) to load (e.g., "op_...")

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. The description adds the deprecation timeline and the fact that it will stop working on a specific date, which is critical behavioral context beyond annotations. It also mentions it must use UUIDs from search_apis, which is a dependency. No contradiction with annotations.

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 well-structured with a clear purpose, deprecation notice, and examples. It is slightly longer than necessary but every part earns its place: the deprecation notice is critical, and the examples are helpful. The front-loading is good, with the main purpose stated first.

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?

Given the tool's complexity (one parameter, output schema present, annotations provided), the description is quite complete. It covers the purpose, usage, deprecation, and provides examples. The only minor gap is that it doesn't describe the output format, but the output schema exists, so that's not required. The deprecation notice adds important context for the agent's decision-making.

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 coverage is 100% (the 'request' parameter is described as containing operation_uuids). The description adds example UUIDs and clarifies the format, but the schema already provides the key semantics. The description doesn't add much beyond the schema, so a baseline 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: to get the full execution contract for a specific operation, including inputs, outputs, and authentication requirements. It specifies the resource (operation contract) and the action (load), and distinguishes it from siblings by noting it must use operation UUIDs from search_apis.

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

Usage Guidelines5/5

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

The description explicitly states when to use this tool (to get execution contract for an operation) and provides a deprecation notice with clear alternatives (Jentic One's jentic inspect/execute flow). It also gives example operation UUIDs to illustrate usage, which is excellent guidance.

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