Skip to main content
Glama

hypertool-mcp

index.tsโ€ข854 B
/** * CLI commands for MCP server management */ import { Command } from "commander"; import { createListCommand } from "./list.js"; import { createGetCommand } from "./get.js"; import { createAddCommand } from "./add.js"; import { createRemoveCommand } from "./remove.js"; import { createGroupCommands } from "./group/index.js"; export function createMCPManagementCommands(): Command { const mcp = new Command("mcp"); mcp .description("Manage MCP server configurations") .addCommand(createListCommand()) .addCommand(createGetCommand()) .addCommand(createAddCommand()) .addCommand(createRemoveCommand()) .addCommand(createGroupCommands()); return mcp; } // Export individual commands for direct use export { createListCommand, createGetCommand, createAddCommand, createRemoveCommand, createGroupCommands, };

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