1. Conduid
  2. Developer Tools
  3. Edgedelta MCP Server
MCP server · Developer Tools

Edgedelta MCP Server

Edge Delta MCP Server

Unclaimed MIT last commit 6 months ago devtools
56Fair

Scored yesterday · breakdown

About Edgedelta MCP Server

Edgedelta MCP Server is an MCP server published by edgedelta in the Developer Tools category: edge Delta MCP Server. It has been installed 0 times through Conduid.

The repository has 5 stars and 4 forks, with the last commit 6 months 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 edgedelta-mcp-server

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 Edgedelta MCP Server

Powered by Claude · Grounded in docs

I know everything about Edgedelta MCP Server. 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.

Releases

v0.2.40v0.2.40
v0.2.39v0.2.39
v0.2.38v0.2.38
v0.2.37v0.2.37
v0.2.36v0.2.36

README

Edge Delta MCP Server

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.

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Edgedelta MCP Server

How do I install Edgedelta MCP Server?

Run npx edgedelta-mcp-server, 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 Edgedelta MCP Server safe to use with an AI agent?

Its trust score is 56 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 Edgedelta MCP Server still maintained?

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