Back to Catalog

edgedelta-mcp-server

edgedelta/edgedelta-mcp-server
šŸ”— Latest commit:b1c4451
šŸ•’ Updated:Sep 9, 2025, 01:06 PM
Go
AI Tools

Edge Delta MCP Server

MCP Trust Score
Based on our comprehensive evaluation criteria
šŸ¤– Evaluated by gemini-2.5-flashFix
Trust Score48/100
GitHub Metrics
Repository statistics and activity
⭐ GitHub Stars:4
šŸ‘„ Contributors:6
šŸ“‹ Total Issues:2
šŸ“¦ Has Releases:No
šŸ”§ Has CI/CD Pipeline:No
Configuration
Configuration example extracted from README.md for Claude Desktop and other clients.
šŸ¤– Evaluated by gemini-2.5-flashFix
{
  "edgedelta-mcp-server-docker": {
    "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": "<YOUR_TOKEN>",
      "ED_ORG_ID": "<YOUR_ORG_ID>"
    }
  }
}
MCP Protocol Support
Implemented MCP protocol features
šŸ¤– Evaluated by gemini-2.5-flashFix
Tools:āœ“
Prompts:āœ—
Resources:āœ“
Sampling:āœ—
Roots:āœ—
Logging:āœ—
STDIO Transport:āœ“
HTTP Transport:āœ—
OAuth2 Auth:āœ—
Dependencies
5 dependencies
Libraries and frameworks used by this MCP server
šŸ¤– Evaluated by gemini-2.5-flashFix
Add Quality Badge
Show your MCP trust score in your README
Trust Score Badge
[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/edgedelta/edgedelta-mcp-server)](https://archestra.ai/mcp-catalog/edgedelta__edgedelta-mcp-server)
README.md

Edge Delta MCP Server

Trust Score

The Edge Delta MCP Server is a Model Context Protocol (MCP)
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
      sudo apt-get update && sudo apt-get install -y docker-buildx-plugin
      
    • Fedora / RHEL / CentOS
      sudo dnf install -y docker-buildx-plugin   # or yum install …
      
    • Other distros (manual fallback)
      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.
  4. Your EdgeĀ Delta organisation ID – find it here.

Build (container image)

First‑time setup (creates a multi‑platform builder and boots it):

docker buildx create --name edgedelta-builder --use
docker buildx inspect --bootstrap

Build the image and load it into the local Docker daemon:

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

{
  "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": "<YOUR_TOKEN>",
        "ED_ORG_ID": "<YOUR_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 for full details.

edgedelta-mcp-server MCP Server | Documentation & Integration | Archestra