Skip to main content
Glama
zillow
by zillow

resetConfig

Restore default configuration settings by clearing all saved customizations in the AutoMobile mobile automation suite.

Instructions

Reset to default settings. This will clear all saved configuration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function that implements the resetConfig tool logic. It resets the server configuration using ConfigurationManager.resetServerConfig() and returns a JSON response indicating success or failure.
    async (): Promise<any> => {
      try {
        logger.info("Resetting MCP server configuration to defaults");
    
        await ConfigurationManager.getInstance().resetServerConfig();
    
        const result = {
          success: true,
          message: "MCP server configuration reset to defaults",
        };
    
        return createJSONToolResponse(result);
      } catch (error) {
        logger.error("Failed to reset MCP server configuration:", error);
        const result = {
          success: false,
          message: `Failed to reset MCP server configuration: ${error}`
        };
        return createJSONToolResponse(result);
      }
    }
  • Registration of the resetConfig tool in ToolRegistry, including the tool name, description, empty input schema, and inline handler function.
    ToolRegistry.register(
      "resetConfig",
      "Reset to default settings. This will clear all saved configuration.",
      z.object({}),
      async (): Promise<any> => {
        try {
          logger.info("Resetting MCP server configuration to defaults");
    
          await ConfigurationManager.getInstance().resetServerConfig();
    
          const result = {
            success: true,
            message: "MCP server configuration reset to defaults",
          };
    
          return createJSONToolResponse(result);
        } catch (error) {
          logger.error("Failed to reset MCP server configuration:", error);
          const result = {
            success: false,
            message: `Failed to reset MCP server configuration: ${error}`
          };
          return createJSONToolResponse(result);
        }
      }
    );
  • Empty Zod schema for the resetConfig tool input parameters.
    z.object({}),
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states that the tool 'will clear all saved configuration,' which implies a destructive mutation, but doesn't specify whether this is reversible, requires permissions, or has side effects (e.g., affecting app state). This leaves significant gaps for a mutation tool.

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 two short sentences with zero wasted words. It front-loads the core action ('reset to default settings') and follows with a clarifying consequence ('clear all saved configuration'), making it highly efficient.

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?

Given the tool's complexity as a destructive mutation with no annotations and no output schema, the description is incomplete. It lacks details on what 'default settings' entail, whether the reset is immediate or requires confirmation, and what the response looks like (e.g., success/failure indicators).

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 tool has 0 parameters, and schema description coverage is 100%, so no parameter documentation is needed. The description doesn't add parameter details beyond the schema, but this is appropriate given the lack of parameters, warranting a baseline score of 4.

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

Purpose4/5

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

The description clearly states the action ('reset to default settings') and the resource ('all saved configuration'), making the purpose unambiguous. It doesn't explicitly differentiate from sibling tools like 'clearText' or 'getAllConfigs', but the verb 'reset' implies a specific configuration restoration rather than general clearing or reading.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., whether configuration must exist), exclusions, or related tools like 'getAllConfigs' for checking current settings before resetting.

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/zillow/auto-mobile'

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