get-experimental-features
Check the activation status of experimental features in Meilisearch to determine which advanced capabilities are available for use.
Instructions
Get the status of experimental features in Meilisearch
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/vector-tools.ts:40-54 (registration)Registration of the 'get-experimental-features' MCP tool using server.tool(), including inline handler that retrieves experimental features status from Meilisearch API.server.tool( "get-experimental-features", "Get the status of experimental features in Meilisearch", {}, async () => { try { const response = await apiClient.get('/experimental-features'); return { content: [{ type: "text", text: JSON.stringify(response.data, null, 2) }], }; } catch (error) { return createErrorResponse(error); } } );
- src/tools/vector-tools.ts:44-53 (handler)Inline handler function for 'get-experimental-features' tool. Fetches the status of experimental features using apiClient.get('/experimental-features') and formats the response as text, or returns error response.async () => { try { const response = await apiClient.get('/experimental-features'); return { content: [{ type: "text", text: JSON.stringify(response.data, null, 2) }], }; } catch (error) { return createErrorResponse(error); } }