Skip to main content
Glama
OrionPotter

Meilisearch MCP Server

by OrionPotter

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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); } } );
  • 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); } }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/OrionPotter/iflow-mcp_meilisearch-ts-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server