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.
Connect
Add this configuration to .claude/mcp.json
{
"mcpServers": {
"algolia": {
"command": "npx",
"args": [],
"env": {
"ALGOLIA_APP_ID": "<YOUR_ALGOLIA_APP_ID>",
"ALGOLIA_API_KEY": "<YOUR_ALGOLIA_API_KEY>"
}
}
}
}Tools (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"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- Author
- Algolia (@algolia)
- Repository
- https://github.com/algolia/mcp-node
- Stars
- 0
- Last Updated
- July 12, 2026