https://github.com/edgedelta/edgedelta-mcp-server
Edge Delta MCP Server
https://github.com/edgedelta/edgedelta-mcp-server
Last synced: about 2 months ago
JSON representation
Edge Delta MCP Server
- Host: GitHub
- URL: https://github.com/edgedelta/edgedelta-mcp-server
- Owner: edgedelta
- License: mit
- Created: 2025-04-15T01:08:13.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-08-18T23:16:27.000Z (3 months ago)
- Last Synced: 2025-08-19T00:27:24.957Z (3 months ago)
- Language: Go
- Size: 207 KB
- Stars: 4
- Watchers: 2
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
- Support: SUPPORT.md
Awesome Lists containing this project
- awesome-mcp-servers - **edgedelta/edgedelta-mcp-server šļø šļø āļø** - Interact with Edge Delta anomalies, query logs / patterns / events, and pinpoint root causes and optimize your pipelines. `http` `git` `github` (š Monitoring)
- awesome-mcp-servers - **edgedelta/edgedelta-mcp-server šļø šļø āļø** - Interact with Edge Delta anomalies, query logs / patterns / events, and pinpoint root causes and optimize your pipelines. `http` `git` `github` (Monitoring)
README
# Edge Delta MCP Server
[](https://archestra.ai/mcp-catalog/edgedelta__edgedelta-mcp-server)
The **Edge Delta MCP Server** is a [Model Context Protocol (MCP)](https://modelcontextprotocol.io/introduction)
server that provides seamless integration with Edge Delta APIs, enabling advanced
automation and interaction capabilities for developers and tools.
## UseĀ Cases
- Extract and analyse observability data from EdgeĀ Delta.
- Build AIāpowered tools and applications that interact with EdgeĀ Deltaās platform.
## Prerequisites
1. **DockerĀ EngineĀ ā„āÆ20.10** installed *and running*.
2. **DockerĀ Buildx plugāin** available:
- **macOS / Windows**Ā ā included with DockerĀ Desktop.
- **DebianĀ / Ubuntu**
```bash
sudo apt-get update && sudo apt-get install -y docker-buildx-plugin
```
- **Fedora / RHEL / CentOS**
```bash
sudo dnf install -y docker-buildx-plugin # or yum install ā¦
```
- **Other distros (manual fallback)**
```bash
mkdir -p ~/.docker/cli-plugins
curl -sSL \
https://github.com/docker/buildx/releases/latest/download/buildx-$(uname -s | tr '[:upper:]' '[:lower:]')-amd64 \
-o ~/.docker/cli-plugins/docker-buildx
chmod +x ~/.docker/cli-plugins/docker-buildx
```
3. An **EdgeĀ Delta API token** with the required scope āĀ [create one here](https://docs.edgedelta.com/api-tokens/).
4. Your **EdgeĀ Delta organisation ID** āĀ [find it here](https://docs.edgedelta.com/my-organization/).
## Build (container image)
Firstātime setup (creates a multiāplatform builder and boots it):
```bash
docker buildx create --name edgedelta-builder --use
docker buildx inspect --bootstrap
```
Build the image and load it into the local Docker daemon:
```bash
docker buildx build --load -t mcp/edgedelta .
```
> ā¹ļø The `--load` flag streams the image back to your local Docker engine so you can
> run it directly with `docker run mcp/edgedelta ā¦`.
## Installation
### Usage with Cursor
```json
{
"mcpServers": {
"edgedelta": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e ED_ORG_ID",
"-e ED_API_TOKEN",
"ghcr.io/edgedelta/edgedelta-mcp-server:latest"
],
"env": {
"ED_API_TOKEN": "",
"ED_ORG_ID": ""
}
}
}
}
```
## Library Usage
The exported Go API of this module is **experimental** and may change without notice.
If you rely on it in production, please open an issue describing your use case so we
can stabilise the relevant surface.
## License
Licensed under the terms of the **MIT** licence. See [LICENSE](./LICENSE) for full details.