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
| Name | Required | Description | Default |
|---|---|---|---|
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, }; } - packages/mcp-server/src/tools.ts:260-270 (registration)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), );