← Tools Reference

MiniMax

MiniMax integration (AI). Imported from open-connector.

API key4 toolshttps://api.minimax.io
GET
minimax_list_models
List OpenAI-compatible MiniMax models available to the API key.

/v1/models

GET
minimax_retrieve_model
Retrieve OpenAI-compatible metadata for one MiniMax model.

/v1/models/{modelId}

1 parameter
ParamTypeRequiredDescription
modelIdstringrequiredMiniMax model identifier to retrieve.
POST
minimax_create_response
Create a non-streaming MiniMax response using the OpenAI Responses API shape.

/v1/responses

14 parameters
ParamTypeRequiredDescription
modelstringrequiredMiniMax model name to invoke, for example MiniMax-M3.
inputstringrequiredMiniMax Responses API text or conversation input.
instructionsstringoptionalSystem instructions for the response.
max_output_tokensintegeroptionalMaximum output token count.
temperaturenumberoptionalSampling temperature in the official range [0, 1].
top_pnumberoptionalNucleus sampling value in the official range [0, 1].
service_tierstringoptionalMiniMax service tier for request admission.
toolsarrayoptionalFunction tools available to MiniMax.
tool_choicestringoptionalTool selection strategy.
metadataobjectoptionalString metadata to attach to the MiniMax request.
prompt_cache_keystringoptionalPrompt cache routing identifier.
streambooleanoptionalSet to false for the non-streaming connector action.
textobjectoptionalMiniMax output text format control.
reasoningobjectoptionalMiniMax reasoning control. MiniMax-M3 defaults to none when omitted.
POST
minimax_estimate_input_tokens
Estimate MiniMax response input tokens without invoking the model.

/v1/responses/input_tokens

7 parameters
ParamTypeRequiredDescription
modelstringrequiredMiniMax model name to estimate against, for example MiniMax-M3.
inputstringrequiredMiniMax Responses API text or conversation input.
instructionsstringoptionalSystem instructions included in the estimate.
toolsarrayoptionalFunction tools included in the estimate.
tool_choicestringoptionalTool selection strategy.
textobjectoptionalMiniMax output text format control.
reasoningobjectoptionalMiniMax reasoning control. MiniMax-M3 defaults to none when omitted.