govcloud_quickstart
Verify MCP server status and retrieve top example prompts for all tool categories after installation.
Instructions
Confirm the GovCloud MCP server is running correctly and get the top example prompts for every tool category — the ideal first call after installation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/govcloud-quickstart.ts:77-79 (handler)The actual handler function for the 'govcloud_quickstart' tool. Returns a predefined markdown response confirming the server is running and listing top prompts and tool categories.
export function handleGovcloudQuickstart(_args: unknown): Promise<string> { return Promise.resolve(QUICKSTART_RESPONSE); } - Tool definition object including name, description, and empty inputSchema (no parameters required).
export const govcloudQuickstartTool = { name: 'govcloud_quickstart', description: "Confirm the GovCloud MCP server is running correctly and get the top example prompts for every tool category — the ideal first call after installation.", inputSchema: { type: 'object' as const, properties: {}, required: [], }, }; - src/tools/index.ts:27-57 (registration)Import of govcloudQuickstartTool and handleGovcloudQuickstart, inclusion in allTools array, and routing in handleToolCall switch for 'govcloud_quickstart'.
import { govcloudQuickstartTool, handleGovcloudQuickstart } from './govcloud-quickstart.js'; export const allTools = [ // Compliance bicepAnalyzeTool, bicepRemediateTool, controlLookupTool, controlNarrativeTool, poamGenerateTool, atoReadinessTool, oscalFragmentTool, // Architecture landingZoneTool, landingZoneReferenceTool, serviceSelectTool, gccHighTool, privateEndpointTool, // Platform One bigbangValidateTool, bigbangHardenTool, ironbankLookupTool, addonConfiguratorTool, // Pipeline pipelineAuditTool, signingConfigTool, devsecopsScoreCardTool, // Documents sspSectionTool, contingencyPlanTool, // Meta govcloudQuickstartTool, - src/utils/tool-runner.ts:29-30 (helper)Token budget (1024) and timeout (5000ms) configuration for the govcloud_quickstart tool.
govcloud_quickstart: 1024, bicep_analyze: 4096, - Minimum response length validation (200 characters) for govcloud_quickstart.
govcloud_quickstart: 200, };