Skip to main content
Glama

oauth_helper_status

Check OAuth authentication status and diagnose issues by monitoring process health, timing, and errors during authentication flows.

Instructions

Get detailed diagnostic information about the OAuth helper process. Shows if authentication is in progress, process health, timing, and any errors. Use when troubleshooting authentication issues or checking if OAuth flow is working.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
verboseNoInclude detailed log output if available (default: false)

Implementation Reference

  • Registration of the 'oauth_helper_status' tool including name, description, input schema, and handler function that delegates to server's getOAuthHelperStatus method
      tool: {
        name: "oauth_helper_status",
        description: "Get detailed diagnostic information about the OAuth helper process. Shows if authentication is in progress, process health, timing, and any errors. Use when troubleshooting authentication issues or checking if OAuth flow is working.",
        inputSchema: {
          type: "object",
          properties: {
            verbose: {
              type: "boolean",
              description: "Include detailed log output if available (default: false)"
            }
          }
        }
      },
      handler: (args: { verbose?: boolean }) => server.getOAuthHelperStatus(args.verbose)
    }
  • Type definition for the getOAuthHelperStatus method in IToolHandler interface
    getOAuthHelperStatus(verbose?: boolean): Promise<any>;
  • Handler function for oauth_helper_status tool - executes the tool logic by calling server.getOAuthHelperStatus(verbose)
    handler: (args: { verbose?: boolean }) => server.getOAuthHelperStatus(args.verbose)
Behavior3/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It describes what information is returned (diagnostic details about authentication progress, health, timing, errors) but doesn't cover critical aspects like whether this is a read-only operation, potential side effects, rate limits, or authentication requirements. The description adds value by specifying the diagnostic nature but leaves gaps in behavioral transparency.

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 perfectly concise with two sentences that each earn their place: the first defines the tool's purpose and scope, the second provides explicit usage guidance. No wasted words, and the most important information (what the tool does) is front-loaded.

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

Completeness3/5

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

Given no annotations and no output schema, the description provides good purpose and usage context but lacks details about return values, error conditions, or behavioral constraints. For a diagnostic tool with no structured output documentation, the description should ideally provide more information about what specific diagnostic data is returned and in what format.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description doesn't mention any parameters directly, but with 100% schema description coverage and only one optional parameter (verbose boolean with clear description), the schema handles parameter documentation adequately. The baseline would be 3, but since there's only one parameter and the description focuses appropriately on the tool's purpose rather than parameter details, a 4 is justified.

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 specific verb 'Get' and resource 'detailed diagnostic information about the OAuth helper process', with explicit scope covering authentication progress, process health, timing, and errors. It distinguishes itself from sibling tools like check_github_auth or setup_github_auth by focusing on diagnostic status rather than authentication actions.

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: 'Use when troubleshooting authentication issues or checking if OAuth flow is working.' This provides clear context for application, though it doesn't specify when NOT to use it or name exact alternatives among siblings.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/DollhouseMCP/DollhouseMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server