Skip to main content
Glama

AI Meta MCP Server

by alxspiker

update_function

Modify existing custom MCP functions by updating their name, description, parameters schema, implementation code, or execution environment to adapt to evolving requirements.

Instructions

Update an existing custom MCP function

Input Schema

NameRequiredDescriptionDefault
descriptionNoNew description of what the function does
execution_environmentNoNew environment to execute the code in
implementation_codeNoNew code to implement the function
nameYesName of the function to update
parameters_schemaNoNew JSON Schema for parameters

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "description": { "description": "New description of what the function does", "type": "string" }, "execution_environment": { "description": "New environment to execute the code in", "enum": [ "javascript", "python", "shell" ], "type": "string" }, "implementation_code": { "description": "New code to implement the function", "type": "string" }, "name": { "description": "Name of the function to update", "minLength": 1, "type": "string" }, "parameters_schema": { "additionalProperties": {}, "description": "New JSON Schema for parameters", "type": "object" } }, "required": [ "name" ], "type": "object" }
Install Server

Other Tools from AI Meta MCP Server

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/alxspiker/ai-meta-mcp-server'

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