Skip to main content
Glama

hypertool-mcp

by toolprint

build-toolset

Create and customize a personalized toolset by selecting specific tools for your workflow. Define names and include tools by their identifiers to streamline tasks and improve efficiency on the hypertool-mcp server.

Instructions

Build and save a custom toolset by selecting specific tools. Like assembling tools from a workshop - pick the exact tools you need for a specific task or workflow. You must specify which tools to include. Each tool must specify either namespacedName or refId for identification. Example: {name: 'dev-essentials', tools: [{namespacedName: 'git.status'}, {namespacedName: 'docker.ps'}], autoEquip: true} creates and immediately equips a development toolset.

Input Schema

NameRequiredDescriptionDefault
autoEquipNoAutomatically equip this toolset after creation (default: false)
descriptionNoOptional description of what this toolset is for (e.g., 'Essential tools for web development')
nameYesName for the new toolset. Use lowercase with hyphens (e.g., 'dev-essentials', 'git-workflow', 'debug-kit')
toolsYesArray of tools to include in the toolset. Each tool must specify either namespacedName or refId for identification. Use list-available-tools to see available options.

Input Schema (JSON Schema)

{ "additionalProperties": false, "properties": { "autoEquip": { "description": "Automatically equip this toolset after creation (default: false)", "type": "boolean" }, "description": { "description": "Optional description of what this toolset is for (e.g., 'Essential tools for web development')", "maxLength": 200, "type": "string" }, "name": { "description": "Name for the new toolset. Use lowercase with hyphens (e.g., 'dev-essentials', 'git-workflow', 'debug-kit')", "maxLength": 50, "minLength": 2, "pattern": "^[a-z0-9-]+$", "type": "string" }, "tools": { "description": "Array of tools to include in the toolset. Each tool must specify either namespacedName or refId for identification. Use list-available-tools to see available options.", "items": { "additionalProperties": false, "oneOf": [ { "required": [ "namespacedName" ] }, { "required": [ "refId" ] } ], "properties": { "namespacedName": { "description": "Tool reference by namespaced name (e.g., 'git.status', 'docker.ps')", "type": "string" }, "refId": { "description": "Tool reference by unique hash identifier (e.g., 'abc123def456...')", "type": "string" } }, "type": "object" }, "maxItems": 100, "minItems": 1, "type": "array" } }, "required": [ "name", "tools" ], "type": "object" }

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