Skip to main content
Glama
EasyModeOnly

@ezquill/mcp-server

by EasyModeOnly

authenticate

Sign in to ezQuill when a tool reports NOT_AUTHENTICATED. Open the returned link to authorize access.

Instructions

Sign in to ezQuill. Returns a link for the person to open. Call this only if a tool reports NOT_AUTHENTICATED and no link was already given.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
includeDeleteNoAlso request permission to delete. Off by default — ask the person first.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

The annotations only indicate that this is not read-only and is open-world, but the description adds meaningful behavioral context: it returns a link for a person to open rather than directly authenticating the agent, and it should only be used when no link has already been provided. This clarifies the interactive nature of the operation.

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?

Two short sentences deliver the core purpose, the output, and the precise usage condition with no wasted words. The critical 'only if' guidance is placed prominently.

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

Completeness5/5

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

For a simple one-parameter authentication tool with a helpful schema and clear annotations, the description covers what the tool does, what it returns, and exactly when to invoke it. Nothing essential is missing.

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 input schema already provides full coverage for the single parameter, including its meaning and default behavior. The description does not repeat parameter details, but that is acceptable since schema coverage is 100%; the baseline of 3 applies.

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 states a specific verb and resource: 'Sign in to ezQuill.' It also explains the tool's immediate output ('Returns a link for the person to open'), making it clearly distinct from siblings like sign_out and the project-reading tools.

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 gives an explicit condition for when to call the tool: 'Call this only if a tool reports NOT_AUTHENTICATED and no link was already given.' This also states an exclusion, preventing unnecessary repeated calls when a link is already available.

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