Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

post_w_authorize

Authorize API calls by sending POST requests to /w/authorize with route IDs, query filters, pagination, and headers.

Instructions

Authorize Calls POST /w/authorize. Provide route IDs in path_params, filters and pagination in query, and any required request headers in headers.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo
queryNo
headersNo
path_paramsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.1/5.0
Behavior2/5

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

There are no annotations, so the description carries the full burden of behavioral disclosure. It reveals this is a POST (implying mutation) and that headers may be required, but it does not describe side effects, whether authorization changes state, idempotency, permissions needed, or response behavior. The transparency is minimal.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and front-loaded with the endpoint, and the parameter mapping is succinct. But the opening phrase 'Authorize Calls' is awkward and adds little, and the instructions are crammed into one run-on sentence. It is concise but not optimally structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with zero annotations, zero schema coverage, and four generic free-form parameters, the description leaves too much unexplained: the business purpose of authorization, what route IDs represent, what the response contains, and required inputs are not specified. The presence of an output schema helps but does not substitute for purpose and selection context.

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 description coverage is 0%, so the description must compensate. It helpfully maps path_params to 'route IDs', query to 'filters and pagination', and headers to request headers, which adds meaning beyond the bare schema. However, it omits the 'body' parameter entirely and leaves 'route IDs' vague, so the compensation is incomplete.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with the fragment 'Authorize Calls `POST /w/authorize`', which merely restates the tool name and endpoint without explaining what authorization means, what resource it acts on, or what business outcome it produces. It gives the HTTP method and path, so it is not a pure tautology, but an agent cannot tell what this tool is for or how it stands apart from the many sibling POST tools.

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

Usage Guidelines1/5

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

There is no guidance about when to use this tool versus alternative tools. The description only says where to place route IDs, filters, and headers; it never states the conditions that warrant calling 'authorize' or mentions any sibling tool as an alternative. With dozens of sibling endpoints, the agent is left to guess purpose and selection context.

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

Deploy Server

Other Tools