Back to MCP directory
publicPublicdnsLocal runtime

mcp-ilert

ilert官方MCP服务器,支持AI助手访问警报和事件管理资源

article

README

🚀 ilert MCP server

ilert MCP server是ilert官方的模型上下文协议(MCP)服务器,可让AI助手访问你在ilert上的警报和事件管理资源。该服务器为远程服务器,采用可流式传输的HTTP传输协议

安装MCP服务器

🚀 快速开始

与热门AI代理和编码助手连接

有关如何与Claude、Cline、Cursor和Windsurf等最流行的AI代理和编码助手进行连接的说明,请参阅ilert文档

自定义集成或与其他MCP客户端集成

如果你需要进行自定义集成或与其他MCP客户端集成,请按照以下步骤操作:

  1. 登录ilert应用程序并打开你的组织设置。
  2. 点击个人资料 > API密钥,为你的用户创建一个新的API密钥。
  3. 将以下配置添加到你的AI助手或MCP客户端(配置模式可能因实现而异):
{
  "mcpServers": {
    "ilert": {
      "type": "streamableHttp",
      "url": "https://mcp.ilert.com/mcp",
      "headers": {
        "Authorization": "Bearer {{YOUR-API-KEY}}"
      }
    }
  }
}

对于不支持远程MCP服务器或尚未实现可流式传输的HTTP传输协议的客户端,你可以使用以下配置:

{
  "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}}"
      }
    }
  }
}
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client