edgedelta-mcp-server
If you are the rightful owner of edgedelta-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Edge Delta MCP Server is a Model Context Protocol server that integrates with Edge Delta APIs for advanced automation and interaction.
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
- DockerĀ EngineĀ ā„āÆ20.10 installed and running.
- 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
- An EdgeĀ Delta API token with the required scope āĀ create one here.
- 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 withdocker 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 for full details.