Provides tools for searching text within an Algolia index, allowing for efficient querying and retrieval of indexed content.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Algolia Search MCP Serversearch for 'wireless noise-canceling headphones'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Algolia Search MCP Server
This repository have been archived. The Official server is released at Algolia Node.js MCP.
Features
Search for any text in your Algolia index
Setup
This package is installed as local.
Clone the repository
Install dependencies
cd algolia-search-mcp-server pnpm installBuild the project and install it globally
pnpm build npm install -g .Configure your IDE:
cline(cline_mcp_settings.json)
{ "mcpServers": { "algolia-search-server": { "command": "algolia-search-server", "env": { "ALGOLIA_APPLICATION_ID": "<YOUR_ALGOLIA_APPLICATION_ID>", "ALGOLIA_SEARCH_API_KEY": "<YOUR_ALGOLIA_SEARCH_API_KEY>", "ALGOLIA_INDEX_NAME": "<YOUR_ALGOLIA_INDEX_NAME>" } } } }Visual Studio Code(
settings.json){ "chat.mcp.discovery.enabled": true, "mcp": { "servers": { "algolia-search-server: { "command": "algolia-search-server", "env": { "ALGOLIA_APPLICATION_ID": "<YOUR_ALGOLIA_APPLICATION_ID>", "ALGOLIA_SEARCH_API_KEY": "<YOUR_ALGOLIA_SEARCH_API_KEY>", "ALGOLIA_INDEX_NAME": "<YOUR_ALGOLIA_INDEX_NAME>" } } } } }