get-connection-settings
Retrieve current Meilisearch connection settings for integration and configuration with LLM interfaces like Claude.
Instructions
Get current Meilisearch connection settings
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/meilisearch_mcp/server.py:468-474 (handler)The execution handler for the 'get-connection-settings' tool. It returns a text content with the current Meilisearch URL and a masked API key (first 8 characters shown if set).if name == "get-connection-settings": return [ types.TextContent( type="text", text=f"Current connection settings:\nURL: {self.url}\nAPI Key: {'*' * 8 if self.api_key else 'Not set'}", ) ]
- src/meilisearch_mcp/server.py:75-83 (registration)Registration of the tool in the list_tools() handler, defining its name, description, and input schema (empty object).types.Tool( name="get-connection-settings", description="Get current Meilisearch connection settings", inputSchema={ "type": "object", "properties": {}, "additionalProperties": False, }, ),
- src/meilisearch_mcp/server.py:79-83 (schema)Input schema for the tool: an empty object with no properties and no additional properties allowed."type": "object", "properties": {}, "additionalProperties": False, }, ),