Skip to main content
This is a beta feature according to Algolia’s Terms of Service (“Beta Services”).

Before you begin

To connect Algolia Public MCP, make sure you have:

Create or locate an MCP server

  1. Go to the MCP servers page in the Algolia dashboard and select the appropriate application.
  2. If an existing MCP server is available, click the link icon to copy the URL.
  3. To create a new MCP server:
    1. Select up to five indices and any Recommend models you want to expose.
    2. Add descriptions to help the LLM choose the right index or tool.
    3. Save and copy the URL of the new MCP instance.
You can create up to 5 MCP server instances per application. Authentication uses your Search .

Connect to an MCP client

  1. Open Cursor settings, then click Tools and MCPs.
  2. Click Add MCP Server and fill in the following:
    • MCP Server URL: https://mcp.{REGIONS}.algolia.com/1/{UNIQ_ID}/mcp
    • Name: Algolia
    • Description: add a description that helps the LLM understand the tool’s purpose.
    • Authentication: none.
  3. Click Save.
  4. Enable the Algolia MCP connection from the prompt bar.
Alternatively, you directly add the following to your ~/.cursor/mcp.json or %USERPROFILE%\.cursor\mcp.json file:
{
  "mcpServers": {
    "Algolia": { 
      "url": "https://mcp.{REGIONS}.algolia.com/1/{UNIQ_ID}/mcp"
    } 
  }
}

Tools exposed by Algolia Public MCP

Algolia Public MCP exposes a tool per index and a small set of shared tools:
ToolAPI
Search
algolia_search_{index_name}Search an index
algolia_search_for_facet_valuesSearch for facet values
Recommend
algolia_recommendationsRetrieve recommendations
ChatGPT requires two extra tools (see OpenAI MCP docs):

Guidelines

  • Usage and billing. API requests made through Algolia Public MCP count toward your Algolia usage. Each tool call typically maps to one API request.
  • Data access and permissions. The MCP grants the connected LLM access to your Algolia records according to the permissions defined in your Search .
  • Prompt design. Use a clear system prompt that tells the assistant to return Algolia results exactly as provided.
Last modified on February 10, 2026