Skip to main content
Glama

Routine

by mquan

update-routine

Modify a specific routine by name, updating its description or steps while preserving the existing schema. Confirm changes with the user and ensure accurate updates by referencing stored routines.

Instructions

Update a routine by name. Factor in the existing schema and update only the portion specified by the user. Always confirm with user that they want to update it. User may supply a name that's not exactly as how it's stored. Use the load-routines tool to get the list of all routines.

Input Schema

NameRequiredDescriptionDefault
descriptionYesDescription of the routine.
nameYesExact name of the routine to be updated.
stepsYesSteps of the routine.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "description": { "description": "Description of the routine.", "type": "string" }, "name": { "description": "Exact name of the routine to be updated.", "type": "string" }, "steps": { "description": "Steps of the routine.", "items": { "additionalProperties": false, "properties": { "description": { "description": "Description of the step to help the LLM understand the purpose of the tool call", "type": "string" }, "params": { "additionalProperties": true, "description": "Parameters used to call the tool, based on the context some of these should be swapped out with dynamic values", "properties": {}, "type": "object" }, "tool": { "description": "The tool used with name, input schema used", "type": "string" } }, "required": [ "description", "tool", "params" ], "type": "object" }, "type": "array" } }, "required": [ "name", "description", "steps" ], "type": "object" }
Install Server

Other Tools from Routine

Related Tools

    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/mquan/routine'

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