Skip to main content
Glama

check-setup

Verify OSS Autopilot configuration and identify missing settings to ensure proper functionality for managing open source contributions.

Instructions

Check whether OSS Autopilot is properly set up and configured. Returns setup status and any missing configuration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The implementation of the 'check-setup' tool handler.
    export async function runCheckSetup(): Promise<CheckSetupOutput> {
      const stateManager = getStateManager();
    
      return {
        setupComplete: stateManager.isSetupComplete(),
        username: stateManager.getState().config.githubUsername,
      };
    }
  • Registration of the 'check-setup' tool in the MCP server.
    // 14. check-setup — Check if setup is complete
    server.registerTool(
      'check-setup',
      {
        description:
          'Check whether OSS Autopilot is properly set up and configured. Returns setup status and any missing configuration.',
        inputSchema: {},
        annotations: { readOnlyHint: true },
      },
      wrapTool(runCheckSetup),
    );

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