Get the FREE Ultimate OpenClaw Setup Guide →

notifly

Notifly MCP Server enables AI agents to provide real-time, trusted Notifly documentation and SDK code examples for seamless integrations.

Installation
Run this command in your terminal to add the MCP server to Claude Code.
Run in terminal:
Command
claude mcp add --transport stdio notifly-tech-notifly-mcp-server npx -y notifly-mcp-server@latest \
  --env SDK_SEARCH_MAX_RESULTS="default 3" \
  --env DOCS_SEARCH_MAX_RESULTS="default 3"

How to use

Notifly MCP Server exposes two primary tools for MCP-enabled clients: search_docs and search_sdk. Once configured in your MCP client, you can invoke these tools from the client’s tool palette or assistant UI to fetch Notifly documentation pages, user guides, API references, troubleshooting notes, and best practices, as well as to explore Notifly SDKs across platforms (iOS, Android, Flutter, React Native, JavaScript) with production-ready code snippets. The server performs semantic search with ranking to surface relevant documentation and development resources, enabling quick integration work for AI agents.

To use these capabilities, install and run the Notifly MCP Server, then point your MCP client configuration to the server (for example via a shared MCP config). After the server is reachable, you can issue search_docs to retrieve Notifly docs and search_sdk to discover SDKs and implementation examples. Network access is required for fetching live documentation and SDK sources. You can tune result counts with environment variables DOCS_SEARCH_MAX_RESULTS and SDK_SEARCH_MAX_RESULTS to suit your latency and relevance preferences.

How to install

Prerequisites:

  • Node.js v18 or newer
  • npm (bundled with Node.js) installed

Installation steps:

  1. Install the MCP server globally:
npm i -g notifly-mcp-server@latest
  1. Ensure your environment is prepared for MCP usage (optional). You can configure environment variables to control result counts, for example:
export DOCS_SEARCH_MAX_RESULTS=3
export SDK_SEARCH_MAX_RESULTS=3
  1. Run the MCP server (this example uses npx to always fetch the latest version):
npx -y notifly-mcp-server@latest
  1. Add or update your project's MCP configuration to include Notifly. For example, in your shared MCP config:
{
  "mcpServers": {
    "notifly-mcp-server": {
      "command": "npx",
      "args": ["-y", "notifly-mcp-server@latest"]
    }
  }
}
  1. If you are integrating with specific clients (Claude Code, Codex, etc.), follow the client-specific configuration examples in the README to register the server.

Additional notes

  • Network access is required for fetching documentation pages and SDK source files.
  • You can adjust the maximum number of results returned for docs and SDKs via DOCS_SEARCH_MAX_RESULTS and SDK_SEARCH_MAX_RESULTS environment variables.
  • If you update Notifly MCP Server, remember to refresh or restart your MCP client configuration to load changes.
  • The server supports running in local development mode and can be integrated via MCP configuration in VS Code extensions, Copilot clients, Claude Code, Codex, or other MCP-enabled environments.

Related MCP Servers

Sponsor this space

Reach thousands of developers