Enables natural language interactions with Algolia's search and analytics platform, providing tools for searching and manipulating indices, analyzing search metrics and performance, monitoring application status and incidents, and managing account settings and configurations.
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 Node.js MCPsearch my 'products' index for Nike shoes under $100"
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 Node.js MCP
๐ Hosted MCP Now Available Weโre excited to announce that a Hosted MCP is now available! This makes it easier than ever to connect your external data and APIs to ChatGPT โ no setup or hosting required.
๐ Learn more and get started in our documentation.
https://github.com/user-attachments/assets/c36a72e0-f790-4b3f-8720-294ab7f5f6eb
This repository contains experimental Model Context Protocol (or MCP) servers for interacting with Algolia APIs. We're sharing it for you to explore and experiment with. Feel free to use it, fork it, or build on top of it โ but just know that it's not officially supported by Algolia and isn't covered under our SLA.
We might update it, break it, or remove it entirely at any time. If you customize or configure things here, there's a chance that work could be lost. Also, using MCP in production could affect your Algolia usage.
If you have feedback or ideas (even code!), we'd love to hear it. Just know that we might use it to help improve our products. This project is provided "as is" and "as available," with no guarantees or warranties. To be super clear: MCP isn't considered an "API Client" for SLA purposes.
โจ Quick Start
Download the latest release from our GitHub Releases
Authenticate with your Algolia account
Connect to Claude Desktop
Start asking questions about your Algolia data!
For step-by-step instructions, follow theinstallation guide and configuration for Claude Desktop.
๐ Features
Algolia Node.js MCP enables natural language interactions with your Algolia data through Claude Desktop. This implementation allows you to:
Search and manipulate indices with natural language
Analyze search metrics and performance
Monitor application status and incidents
Visualize your data with AI-generated charts and graphs
Integrate seamlessly with Claude Desktop through the Model Context Protocol
๐ฎ Usage Examples
Here are some example prompts to get you started:
Account Management
Applications
Search & Indexing
Analytics & Insights
Monitoring & Performance
Try providing your specific application and index in your initial prompt to avoid unnecessary back and forth.
๐ฆ Installation
macOS
Download the latest release from GitHub Releases
Extract the
.zipfileFrom your terminal, remove quarantine flag to allow execution:
xattr -r -d com.apple.quarantine <path_to_executable>Note: This step is necessary as the executable is not signed with an Apple Developer account. If you prefer, you can build from source instead.
Run the authentication command:
<path_to_executable> authenticateThis will open your browser to authenticate with the Algolia Dashboard.
Windows & Linux
Coming soon.
โ๏ธ Configuration
Claude Desktop Setup
Open Claude Desktop settings
Add the following to your configuration:
{ "mcpServers": { "algolia-mcp": { "command": "<path_to_executable>" } } }Restart Claude Desktop
You can refer to theofficial documentation for Claude Desktop.
CLI Options
Available Commands
Server Options
๐ Development
Requirements
Node.js 22 or higher
npm
Setup Development Environment
Clone the repository:
git clone https://github.com/algolia/mcp-node cd mcp-node npm installConfigure Claude Desktop for development:
{ "mcpServers": { "algolia-mcp": { "command": "<PATH_TO_BIN>/node", "args": [ "--experimental-strip-types", "--no-warnings=ExperimentalWarning", "<PATH_TO_PROJECT>/src/app.ts" ] } } }
Note: You'll need to restart Claude Desktop after making code changes.
Build
Testing and Debugging
Use the MCP Inspector for testing and debugging:
Run the debug script:
cd mcp-node npm run debugOpen http://127.0.0.1:6274/ in your browser
Click Connect to start the server
Send test requests through the inspector interface
๐ง Troubleshooting
Common Issues
"App not responding" error: Ensure you've removed the quarantine attribute on macOS
Authentication failures: Try logging out and authenticating again
Claude can't access tools: Verify your MCP configuration in Claude Desktop settings
Logs and Diagnostics
Log files are stored in:
macOS:
~/Library/Logs/algolia-mcp/Windows:
%APPDATA%\algolia-mcp\logs\Linux:
~/.config/algolia-mcp/logs/
๐ฅ Contributing
We welcome contributions to Algolia Node.js MCP! Here's how you can help:
Fork the repository
Create a feature branch (
git checkout -b feature/amazing-feature)Commit your changes (
git commit -m 'Add some amazing feature')Push to the branch (
git push origin feature/amazing-feature)Open a pull request
License
Algolia Node.js MCP is MIT licensed.