Skip to main content
Glama

setup

Configures OSS Autopilot preferences including languages, interests, and contribution goals to personalize your open source contribution experience.

Instructions

Run OSS Autopilot setup to configure preferences like languages, interests, and contribution goals.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
resetNoIf true, reset all preferences to defaults before running setup
setNoSet preferences non-interactively as key=value pairs (e.g. ["languages=typescript,rust"])

Implementation Reference

  • MCP tool registration for 'setup' with input schema (reset, set) and handler wrapped via wrapTool(runSetup).
    // 13. setup — Interactive setup
    server.registerTool(
      'setup',
      {
        description:
          'Run OSS Autopilot setup to configure preferences like languages, interests, and contribution goals.',
        inputSchema: {
          reset: z.boolean().optional().describe('If true, reset all preferences to defaults before running setup'),
          set: z
            .array(z.string())
            .optional()
            .describe('Set preferences non-interactively as key=value pairs (e.g. ["languages=typescript,rust"])'),
        },
        annotations: { readOnlyHint: false, destructiveHint: false },
      },
      wrapTool(runSetup),
    );
  • getSetupKeys() – returns the list of config keys that can be set via the 'setup --set' command (filtered by settableVia === 'setup' or 'both').
    export function getSetupKeys(): readonly string[] {
      return CONFIG_KEY_REGISTRY.filter((d) => d.settableVia === 'setup' || d.settableVia === 'both').map((d) => d.key);
    }
    
    /** Keys accepted by the `config <key> <value>` command (includes `both`). */
    export function getConfigKeys(): readonly string[] {
      return CONFIG_KEY_REGISTRY.filter((d) => d.settableVia === 'config' || d.settableVia === 'both').map((d) => d.key);
    }
Behavior3/5

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

Annotations indicate the tool is neither read-only nor destructive. The description confirms it configures preferences, implying mutation. However, it does not disclose specific side effects (e.g., whether existing settings are overwritten, if reset is required first) or the interactive nature when no 'set' parameter is provided.

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

Conciseness4/5

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

The description is a single concise sentence, efficiently conveying the core purpose. No redundant information is present, though it could benefit from listing common use cases or mentioning the two parameters.

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 the tool's simplicity (2 optional parameters, no output schema), the description covers the basic functionality. However, it lacks information about return values, potential interactivity, and any required prior setup, leaving some contextual gaps.

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?

Input schema coverage is 100% with clear parameter descriptions. The tool description adds no additional guidance beyond the schema, missing an opportunity to explain the 'set' format or interaction between 'reset' and 'set'. Baseline 3 is appropriate.

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 ('Run OSS Autopilot setup') and the resource ('preferences like languages, interests, and contribution goals'). It effectively communicates the tool's purpose among siblings such as 'check-setup' and 'config', though it does not explicitly differentiate from them.

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

Usage Guidelines3/5

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

The description provides a general purpose but lacks explicit guidance on when to use this tool versus alternatives like 'check-setup' or 'config'. There is no mention of prerequisites, typical scenarios, or exclusions, which limits the agent's ability to make a well-contextualized choice.

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/costajohnt/oss-autopilot'

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