https://github.com/iLert/mcp-ilert
MCP server for ilert
https://github.com/iLert/mcp-ilert
Last synced: 3 months ago
JSON representation
MCP server for ilert
- Host: GitHub
- URL: https://github.com/iLert/mcp-ilert
- Owner: iLert
- License: mit
- Created: 2025-08-08T12:55:07.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2025-08-28T09:47:15.000Z (3 months ago)
- Last Synced: 2025-09-01T03:09:09.623Z (3 months ago)
- Homepage: https://ilert.com
- Size: 9.77 KB
- Stars: 13
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mcp-servers - **mcp-ilert** - MCP server for ilert `mcp` `server` `http` `git` `github` `git clone https://github.com/iLert/mcp-ilert` (📦 Other)
- awesome-mcp-servers - ilert - Interact with [ilert](https://ilert.com) through natural language. (Official Servers)
README
# ilert MCP server
[](https://cursor.com/en/install-mcp?name=ilert&config=eyJ0eXBlIjoic3RyZWFtYWJsZUh0dHAiLCJ1cmwiOiJodHRwczovL21jcC5pbGVydC5jb20vbWNwIiwiaGVhZGVycyI6eyJBdXRob3JpemF0aW9uIjoiQmVhcmVyIHtZT1VSLUlMRVJULUFQSS1LRVktSEVSRX0ifX0%3D)
The official [Model Context Protocol](https://modelcontextprotocol.io/introduction) (MCP) server for ilert.
Enables AI assistants to navigate your alerting and incident management resources on [ilert](https://www.ilert.com/).
The ilert MCP server is remote and uses the [Streamable HTTP transport](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#streamable-http).
## Usage
See the [DOCUMENTATION](https://docs.ilert.com/developer-docs/mcp-server/overview) 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](https://app.ilert.com) 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):
```json
{
"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](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#streamable-http) yet, you can use a configuration like the following instead:
```json
{
"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}}"
}
}
}
}
```