Connect Claude Desktop to your Algolia data using the Model Context Protocol (MCP)
Quick Start โข Features โข Usage Examples โข Installation โข Configuration โข Development โข Troubleshooting โข Contributing โข License
algolia-mcp-demo.mp4
- Download the latest release from our GitHub Releases
- Authenticate with your Algolia account
- Connect to Claude Desktop
- Start asking questions about your Algolia data!
Note
For step-by-step instructions, follow the installation guide and configuration for Claude Desktop.
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
Here are some example prompts to get you started:
"What is the email address associated with my Algolia account?"
"List all my Algolia apps."
"List all the indices are in my 'e-commerce' application and format them into a table sorted by entries."
"Show me the configuration for my 'products' index."
"Search my 'products' index for Nike shoes under $100."
"Add the top 10 programming books to my 'library' index using their ISBNs as objectIDs."
"How many records do I have in my 'customers' index?"
"What's the no-results rate for my 'products' index in the DE region? Generate a graph using React and Recharts."
"Show me the top 10 searches with no results in the DE region from last week."
"Are there any ongoing incidents at Algolia?"
"What's the current latency for my 'e-commerce' index?"
"Show me a visualization of my daily account usage for the past month."
Tip
Try providing your specific application and index in your initial prompt to avoid unnecessary back and forth.
- Download the latest release from GitHub Releases
- Extract the
.zip
file - From 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:
This will open your browser to authenticate with the Algolia Dashboard.
<path_to_executable> authenticate
Coming soon.
- Open Claude Desktop settings
- Add the following to your configuration:
{ "mcpServers": { "algolia-mcp": { "command": "<path_to_executable>" } } }
- Restart Claude Desktop
Tip
You can refer to the official documentation for Claude Desktop.
Usage: algolia-mcp [options] [command]
Options:
-h, --help display help for command
Commands:
start-server [options] Starts the Algolia MCP server
authenticate Authenticate with Algolia
logout Remove all stored credentials
list-tools List all available tools
help [command] display help for command
Usage: algolia-mcp start-server [options]
Starts the Algolia MCP server
Options:
-o, --allow-tools <tools> Comma separated list of tool ids (default:
["listIndices","getSettings","searchSingleIndex","getTopSearches","getTopHits","getNoResultsRate"])
-h, --help display help for command
- Node.js 22 or higher
- npm
-
Clone the repository:
git clone https://github.com/algolia/mcp-node cd mcp-node npm install
-
Configure 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.
npm run build -- --outfile dist/algolia-mcp
Use the MCP Inspector for testing and debugging:
-
Run the debug script:
cd mcp-node npm run debug
-
Open http://127.0.0.1:6274/ in your browser
-
Click Connect to start the server
-
Send test requests through the inspector interface
- "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
Log files are stored in:
- macOS:
~/Library/Logs/algolia-mcp/
- Windows:
%APPDATA%\algolia-mcp\logs\
- Linux:
~/.config/algolia-mcp/logs/
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
Algolia Node.js MCP is MIT licensed.
Made with โค๏ธ by Algolia