update-connection-settings
Modify Meilisearch connection settings, including URL and API key, to ensure proper integration with LLM interfaces via the MCP server.
Instructions
Update Meilisearch connection settings
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | No | ||
| url | No |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"api_key": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
}