Skip to main content
Glama

hypertool-mcp

registry.tsโ€ข2 kB
/** * Configuration Tools Registry * * Central registry of all configuration tools for HyperTool MCP. * This provides a single source of truth for configuration tool management. */ import { ToolModuleFactory } from "../types.js"; import { createListAvailableToolsModule } from "./tools/list-available-tools.js"; import { createBuildToolsetModule } from "./tools/build-toolset.js"; import { createListSavedToolsetsModule } from "./tools/list-saved-toolsets.js"; import { createEquipToolsetModule } from "./tools/equip-toolset.js"; import { createDeleteToolsetModule } from "./tools/delete-toolset.js"; import { createUnequipToolsetModule } from "./tools/unequip-toolset.js"; import { createGetActiveToolsetModule } from "./tools/get-active-toolset.js"; import { createAddToolAnnotationModule } from "./tools/add-tool-annotation.js"; import { createExitConfigurationModeModule } from "../common/exit-configuration-mode.js"; import { createListPersonasModule } from "./persona/list-personas.js"; /** * Registry of all configuration tool factories */ export const CONFIG_TOOL_FACTORIES: ToolModuleFactory[] = [ createListAvailableToolsModule, createBuildToolsetModule, createListSavedToolsetsModule, createEquipToolsetModule, createDeleteToolsetModule, createUnequipToolsetModule, createGetActiveToolsetModule, createAddToolAnnotationModule, createListPersonasModule, // Persona management tool createExitConfigurationModeModule, ]; /** * List of configuration tool names (derived from factories) * Note: This requires instantiation to get the actual names, * so we maintain a static list for convenience */ export const CONFIG_TOOL_NAMES = [ "list-available-tools", "build-toolset", "list-saved-toolsets", "equip-toolset", "delete-toolset", "unequip-toolset", "get-active-toolset", "add-tool-annotation", "list-personas", // Persona management tool "exit-configuration-mode", ] as const; export type ConfigToolName = (typeof CONFIG_TOOL_NAMES)[number];

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