delete_function
Remove a custom MCP function by specifying its name, ensuring clean management of AI-generated tools within the AI Meta MCP Server's meta-function architecture.
Instructions
Delete a custom MCP function
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the function to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Name of the function to delete",
"minLength": 1,
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}