AgentHubAgentHub

Akamai CDN

MCP ServerMCP Registry官方收录

io.github.desty2k/akamai · v0.1.1

Read-only MCP server for Akamai CDN — properties, EdgeWorkers, DNS, network lists

概览

Akamai CDN 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "akamai": {
      "command": "uvx",
      "args": [
        "readonly-mcp-akamai"
      ],
      "env": {
        "AKAMAI_HOST": "<AKAMAI_HOST>",
        "AKAMAI_CLIENT_TOKEN": "<AKAMAI_CLIENT_TOKEN>",
        "AKAMAI_CLIENT_SECRET": "<AKAMAI_CLIENT_SECRET>",
        "AKAMAI_ACCESS_TOKEN": "<AKAMAI_ACCESS_TOKEN>"
      }
    }
  }
}

环境变量

AKAMAI_HOST必填

Akamai EdgeGrid API hostname (e.g., akab-xxxx.luna.akamaiapis.net)

AKAMAI_CLIENT_TOKEN必填secret

Akamai EdgeGrid client token

AKAMAI_CLIENT_SECRET必填secret

Akamai EdgeGrid client secret

AKAMAI_ACCESS_TOKEN必填secret

Akamai EdgeGrid access token

相关资源

统一 Manifest

{
  "id": "io.github.desty2k/akamai",
  "type": "mcp-server",
  "version": "0.1.1",
  "displayName": "Akamai CDN",
  "description": "Read-only MCP server for Akamai CDN — properties, EdgeWorkers, DNS, network lists",
  "repository": {
    "url": "https://github.com/desty2k/readonly-mcp-akamai",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "readonly-mcp-akamai",
        "version": "0.1.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "AKAMAI_HOST",
            "description": "Akamai EdgeGrid API hostname (e.g., akab-xxxx.luna.akamaiapis.net)",
            "isRequired": true
          },
          {
            "name": "AKAMAI_CLIENT_TOKEN",
            "description": "Akamai EdgeGrid client token",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "AKAMAI_CLIENT_SECRET",
            "description": "Akamai EdgeGrid client secret",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "AKAMAI_ACCESS_TOKEN",
            "description": "Akamai EdgeGrid access token",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.desty2k/akamai",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.desty2k%2Fakamai/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Akamai CDN — MCP Server 安装与配置 · AgentHub