Skip to main content
Glama

Jentic Remote MCP Server

Search APIs

search_apis
Read-onlyIdempotent

Use this tool to explore for available actions or information based on what the user wants to do (e.g., 'find Discord servers', 'send a message'). Use this to discover what APIs and operations exist in the Jentic catalogue.

Execution is moving to self-hosted Jentic One: to run a discovered operation, install Jentic One (https://jentic.com/jentic-one) and use its search -> inspect -> execute flow through the local broker.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
requestYesDictionary containing search parameters: - query (str, required): Search query string - max_results (int, optional): Maximum number of results to return (default: 5) - api_names (list[str], optional): Filter by specific API names

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds context about the tool's role (discovery only) and the transition to Jentic One, which informs the agent about execution flow. It does not contradict annotations and provides extra behavioral context beyond the structured fields.

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: three sentences that clearly state purpose, scope, and execution context. It is front-loaded with the main verb and resource, and every sentence serves a purpose without extraneous detail.

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 simplicity, an output schema exists (covering return values), and the description covers purpose, usage, and a note about Jentic One. It does not explicitly describe what results look like, but the output schema handles that. The description is sufficiently complete for an agent to understand when and how to use the tool.

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 covers all parameters with 100% coverage (query, max_results, api_names within the request object). The description only says 'Dictionary containing search parameters,' which adds minimal semantic value beyond the schema. Since schema coverage is high, the baseline is 3, and the description does not provide additional formatting, examples, or constraints for the parameters.

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 that the tool explores available actions/information based on user intent and discovers APIs/operations in the Jentic catalogue. It uses specific verbs like 'explore' and 'discover' with a clear resource scope, and it differentiates itself from sibling tools like execute by focusing on discovery rather than execution.

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: use this tool to discover what APIs and operations exist, and if you want to run a discovered operation, use the Jentic One flow. It implies an alternative (execute is a sibling, but not named explicitly) and gives a workflow, though it could be more explicit about when not to use it (e.g., for execution).

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