Skip to main content
Glama
devlimelabs

Meilisearch MCP Server

by devlimelabs

get-experimental-features

Retrieve the status of experimental features in Meilisearch to manage and evaluate upcoming functionalities for enhanced search index and document handling.

Instructions

Get the status of experimental features in Meilisearch

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'get-experimental-features' tool. It performs a GET request to the '/experimental-features' endpoint and returns the JSON-formatted response or an error.
    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); } }
  • Registers the 'get-experimental-features' tool on the MCP server with name, description, empty input schema (no parameters), and inline handler function.
    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/index.ts:68-68 (registration)
    Calls registerVectorTools to register all vector-related tools, including 'get-experimental-features', on the main MCP server instance.
    registerVectorTools(server);

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/devlimelabs/meilisearch-ts-mcp'

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