
MoEngage Documentation MCP Server
Provides comprehensive access to MoEngage documentation from developers, help, and partners portals with full-text search, automatic updates, and intelligent filtering by platform, category, and source.
README
MoEngage Documentation MCP Server 🔍
A Model Context Protocol (MCP) server that provides access to MoEngage documentation through AI assistants like Claude, Cursor, and Claude Code.
🚀 Quick Installation
NPX Installation (Recommended)
# Install and run directly with npx
npx @moengage/documentation-mcp-server
# Enable specific tools only
npx @moengage/documentation-mcp-server --tools=search_documentation,get_document
# List all available tools
npx @moengage/documentation-mcp-server --list-tools
📋 MCP Server Configuration
For Claude Desktop:
- Install Claude Desktop
- Enable Developer Mode from the top-left menu bar
- Open Settings → Developer Option → Edit Config
- Add the MoEngage server configuration:
{
"mcpServers": {
"moengage-docs": {
"command": "npx",
"args": ["-y", "@moengage/documentation-mcp-server"],
"env": {}
}
}
}
Enable specific tools:
{
"mcpServers": {
"moengage-docs": {
"command": "npx",
"args": [
"-y",
"@moengage/documentation-mcp-server",
"--tools=search_documentation,get_document,list_categories"
],
"env": {}
}
}
}
For Cursor:
- Open Settings → Extensions → MCP
- Add configuration:
{
"mcpServers": {
"moengage-docs": {
"command": "npx",
"args": ["-y", "@moengage/documentation-mcp-server"],
"cwd": "/path/to/your/project"
}
}
}
For Claude Code:
- Open VS Code settings
- Add to
settings.json
:
{
"claude.mcpServers": {
"moengage-docs": {
"command": "npx",
"args": ["-y", "@moengage/documentation-mcp-server"]
}
}
}
🔧 Available Tools
The MoEngage MCP server includes the following tools:
search_documentation
- Search MoEngage docs with filters and rankingget_document
- Get specific document by ID with full contentlist_categories
- List all documentation categories and platformsget_recent_updates
- Get recently updated documentationget_update_status
- Check last update status and statisticstrigger_update
- Manually trigger documentation update
Tool Selection
You can choose which tools to enable by adding the --tools
parameter:
# Enable only search and get document
npx @moengage/documentation-mcp-server --tools=search_documentation,get_document
# Enable all tools (default)
npx @moengage/documentation-mcp-server --tools=search_documentation,get_document,list_categories,get_recent_updates,get_update_status,trigger_update
📚 Documentation Sources
This server automatically indexes documentation from three primary MoEngage sources:
- developers.moengage.com - SDK documentation, API references, integration guides
- help.moengage.com - User guides, tutorials, troubleshooting, FAQs
- partners.moengage.com - Partner integrations, marketplace documentation
🔄 Automatic Updates
The MCP server automatically:
- Fetches sitemaps from all MoEngage documentation sources
- Crawls all articles and extracts content
- Processes and indexes documentation in SQLite database
- Runs weekly updates (every Sunday at 2 AM) to keep documentation current
- Tracks changes and provides update status
🚀 Features
- Multi-Source Documentation: Indexes from all MoEngage documentation sources
- Comprehensive Search: Full-text search across all documentation with relevance scoring
- Automatic Updates: Weekly scheduled updates from sitemap XMLs
- Intelligent Processing: Converts HTML documentation to structured markdown
- Source-Aware Filtering: Filter by documentation source, platform, category
- Platform-Specific Search: Filter by Android, iOS, Web, React Native, Flutter, APIs
- Recent Updates Tracking: See what documentation has been recently modified
- Manual Update Triggers: Force immediate updates when needed
- Easy Installation: One-command installation via npx
🔧 Troubleshooting
Common Issues:
-
Server Not Found
- Verify npx is working:
npx --version
- Check Claude Desktop configuration syntax
- Restart Claude Desktop completely
- Verify npx is working:
-
No Results Found
- Run manual update: Use
trigger_update
tool - Check update status: Use
get_update_status
tool
- Run manual update: Use
-
Connection Issues
- Restart your IDE completely
- Check that the MCP server is running
- Verify configuration syntax
🎯 Usage Examples
Once configured, you can ask your AI assistant:
- "Search for Android SDK integration guides"
- "Get the latest documentation on iOS push notifications"
- "Show me recent updates to the Web SDK"
- "List all API documentation categories"
- "Check when the documentation was last updated"
📝 Important Notes
No deployment needed! This MCP server runs locally and automatically updates documentation every Sunday. Users simply install via npx and configure their IDE to use it.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.