notifly-mcp-server

notifly-mcp-server

Enables AI agents to search Notifly documentation and SDK code examples for seamless integration.

Category
Visit Server

README

Notifly MCP Server

npm version npm downloads License

Notifly MCP Server enables AI agents to deliver real‑time, trustworthy Notifly documentation and SDK code examples for seamless integrations right inside any MCP‑compatible client.

Implements the Model Context Protocol (MCP), an open standard for enabling LLMs to interact with external tools and data.

Key capabilities:

  • Documentation Search — Search Notifly docs (user guides, API reference, troubleshooting, best practices) with semantic ranking.
  • SDK Search — Explore Notifly SDKs (iOS, Android, Flutter, React Native, JavaScript), Google Tag Manager templates, and implementation examples. Find symbols and retrieve production‑ready snippets.

Installation

Prerequisites

  • Node.js >= 18

Quick Start

Install Notifly MCP Server:

npm i -g notifly-mcp-server@latest

Create or update the .mcp.json at your project root (or the configuration location your MCP client uses). Using npx ensures you always run the latest published version:

Shared MCP configuration

Add Notifly with:

{
  "mcpServers": {
    "notifly-mcp-server": {
      "command": "npx",
      "args": ["-y", "notifly-mcp-server@latest"]
    }
  }
}

Place this in your client’s MCP config (e.g., VS Code extension settings, ~/.cursor/mcp.json, or your Copilot client’s MCP settings).

Claude Code Configuration

Open your terminal to access the Claude Code CLI. Run the following command to register the Notifly MCP Server.

claude mcp add --transport stdio notifly-mcp-server -- npx -y notifly-mcp-server@latest

Codex Configuration

Open ~/.codex/config.toml. Add the following configuration and restart the Codex CLI:

[mcp_servers]
  [mcp_servers.notifly]
  command = "npx"
  args = ["-y", "notifly-mcp-server@latest"]

Restart your MCP client to load the configuration.

Command-Line Options

notifly-mcp-server [options]

--version, -v  Show version
--help, -h     Show help

Usage

This package runs as an MCP server. Once configured in your MCP client, you can invoke search_docs and search_sdk directly from the client’s tool palette or assistant UI.

Notes:

  • Network access is required to fetch documentation pages and SDK source files.
  • Default timeouts and result counts can be tuned via environment variables:
    • DOCS_SEARCH_MAX_RESULTS (default: 3)
    • SDK_SEARCH_MAX_RESULTS (default: 3)

Local Development

Local Setup

# Clone and install
git clone https://github.com/notifly-tech/notifly-mcp-server.git
cd notifly-mcp-server
npm install

# Build
npm run build

# Run tests
npm test

# Development mode (watch for changes)
npm run dev

MCP Client Configuration for Local Development

Before the package is published, configure your MCP client to use the local build:

{
  "mcpServers": {
    "notifly": {
      "command": "node",
      "args": ["/absolute/path/to/notifly-mcp-server/dist/index.js"]
    }
  }
}

Replace /absolute/path/to/notifly-mcp-server with your actual project path.

Contributing

Contributions are welcome! Please read our guidelines in CONTRIBUTING.md and open an issue to discuss significant changes before submitting a PR.

Support

If you encounter issues or have feature requests, please open an issue on GitHub. For usage questions, check the docs and examples returned by the tools.

License

MIT License with Custom Restrictions - see LICENSE for details.

Resources

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured