Algolia MCP Server

Researchstdio
代码仓库

Algolia's MCP server for interacting with the Algolia search platform through AI tools. Lets agents run searches against indices, inspect and manage index settings and records, and review analytics and monitoring data using natural language. Useful for building, tuning, and debugging search experiences powered by Algolia.

连接

将此配置添加到 .claude/mcp.json

{
  "mcpServers": {
    "algolia": {
      "command": "npx",
      "args": [],
      "env": {
        "ALGOLIA_APP_ID": "<YOUR_ALGOLIA_APP_ID>",
        "ALGOLIA_API_KEY": "<YOUR_ALGOLIA_API_KEY>"
      }
    }
  }
}

工具 (2)

search_single_index

Run a search query against a specific Algolia index.

{
  "type": "object",
  "required": [
    "indexName",
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Search query string"
    },
    "indexName": {
      "type": "string",
      "description": "Name of the index to search"
    }
  }
}

get_settings

Retrieve the configuration settings for an Algolia index.

{
  "type": "object",
  "required": [
    "indexName"
  ],
  "properties": {
    "indexName": {
      "type": "string",
      "description": "Name of the index"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Algolia (@algolia)
代码仓库
https://github.com/algolia/mcp-node
星标
0
最后更新
2026年7月12日