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)

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