invoke_lambda_function_impl
Invoke an AWS Lambda function with a JSON payload, enabling integration with private resources, real-time data, and custom computation through the MCP2Lambda server.
Instructions
Tool that invokes an AWS Lambda function with a JSON payload. Before using this tool, list the functions available to you.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
function_name | Yes | ||
parameters | Yes |
Input Schema (JSON Schema)
{
"properties": {
"function_name": {
"title": "Function Name",
"type": "string"
},
"parameters": {
"title": "Parameters",
"type": "object"
}
},
"required": [
"function_name",
"parameters"
],
"title": "invoke_lambda_function_implArguments",
"type": "object"
}