algolia-search-mcp-server

algolia-search-mcp-server

3.3

If you are the rightful owner of algolia-search-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcpreview.com.

Algolia Search MCP Server allows you to search for any text in your Algolia index using the Model Context Protocol.

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.

  1. Clone the repository

  2. Install dependencies

    cd algolia-search-mcp-server
    pnpm install
    
  3. Build the project and install it globally

    pnpm build
    npm install -g .
    
  4. 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>"
                    }
                }
            }
        }
      }
      

Related MCP Servers

View all search servers →