get_function_details
Retrieve detailed information about a specific custom function by providing its name, enabling users to understand and utilize its capabilities within the AI Meta MCP Server's dynamic tool execution framework.
Instructions
Get details of a custom MCP function
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the function to get details for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Name of the function to get details for",
"minLength": 1,
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}