1. Conduid
  2. Developer Tools
  3. ilert
MCP server · Developer Tools

ilert

MCP server for ilert

Unclaimed MIT last commit a year ago devtools
57Fair

Scored 4 months ago · breakdown

About ilert

ilert is an MCP server published by iLert in the Developer Tools category: mCP server for ilert. It has been installed 0 times through Conduid.

The repository has 13 stars and 1 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx mcp-ilert

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about ilert

Powered by Claude · Grounded in docs

I know everything about ilert. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

ilert MCP server

Install MCP Server

The official Model Context Protocol (MCP) server for ilert.

Enables AI assistants to navigate your alerting and incident management resources on ilert.

The ilert MCP server is remote and uses the Streamable HTTP transport.

Usage

See the DOCUMENTATION for instructions on how to connect with the most popular AI agents and coding assistants like Claude, Cline, Cursor and Windsurf.

For custom integrations or integrating with other MCP clients, follow the instructions below:

  1. Log in to the ilert app and open your organization settings.

  2. Click on Profile > API Keys and create a new api key for your user.

  3. Add the following configuration to your AI assistant or MCP client (the configuration schema may differ depending on the implementation):

    {
      "mcpServers": {
        "ilert": {
          "type": "streamableHttp",
          "url": "https://mcp.ilert.com/mcp",
          "headers": {
            "Authorization": "Bearer {{YOUR-API-KEY}}"
          }
        }
      }
    }
    

    For clients that don't support remote MCP servers or that haven't implemented the Streamable HTTP transport yet, you can use a configuration like the following instead:

    {
      "mcpServers": {
        "ilert": {
          "command": "npx",
          "args": [
            "-y",
            "mcp-remote",
            "https://mcp.ilert.com/mcp",
            "--header",
            "Authorization: Bearer ${ILERT_AUTH_TOKEN}"
          ],
          "env": {
            "ILERT_AUTH_TOKEN": "{{YOUR-API-KEY}}"
          }
        }
      }
    }
    

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About ilert

How do I install ilert?

Run npx mcp-ilert, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is ilert safe to use with an AI agent?

Its trust score is 57 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is ilert still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.