Skip to main content
Glama

hypertool-mcp

completion.tsโ€ข2.19 kB
/** * Completion step - Show next steps and quick start guide */ import { WizardState, WizardStep } from "../setup/types.js"; import { output } from "../../utils/output.js"; import { theme } from "../../utils/theme.js"; export class CompletionStep implements WizardStep { name = "completion"; async run(state: WizardState): Promise<WizardState> { // Skip in dry run mode if (state.dryRun) { return state; } output.displaySpaceBuffer(2); output.displayHeader("๐ŸŽ‰ Hypertool MCP is ready to use!"); output.displaySpaceBuffer(1); // Quick start output.info(theme.label("Quick Start:")); output.info(` โ€ข Run server: ${theme.command("hypertool-mcp")}`); if (state.toolsets.length > 0) { const firstToolset = state.toolsets[0]; output.info( ` โ€ข With toolset: ${theme.command(`hypertool-mcp --equip-toolset ${firstToolset.name}`)}` ); } if (state.selectedApps.length > 0) { const firstApp = state.selectedApps[0]; output.info( ` โ€ข Specific app: ${theme.command(`hypertool-mcp --linked-app ${firstApp}`)}` ); } output.displaySpaceBuffer(1); // Management commands output.info(theme.label("Manage your setup:")); output.info( ` โ€ข View config: ${theme.command("hypertool-mcp config show")}` ); output.info(` โ€ข Add servers: ${theme.command("hypertool-mcp mcp add")}`); output.info( ` โ€ข Create toolsets: ${theme.command("hypertool-mcp config toolset create")}` ); output.displaySpaceBuffer(1); // Help output.info(`Need help? Run: ${theme.command("hypertool-mcp --help")}`); output.displaySpaceBuffer(1); // Tips based on setup if ( state.installationType === "standard" && state.selectedApps.includes("claude-desktop") ) { output.info( theme.muted( "๐Ÿ’ก Tip: Restart Claude Desktop to use the new configuration" ) ); } if (state.toolsets.length === 0) { output.info( theme.muted( "๐Ÿ’ก Tip: Create toolsets to organize your tools by workflow" ) ); } return state; } }

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/toolprint/hypertool-mcp'

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