AgentHubAgentHub

Avanan MSP (Legacy SmartAPI)

MCP ServerMCP Registry官方收录

io.github.wyre-technology/avanan-legacy-mcp · v1.0.1

MCP server for the Avanan MSP SmartAPI — manage child MSPs, users, tenants, licenses, and usage.

概览

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

安装

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

{
  "mcpServers": {
    "avanan-legacy-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-technology/avanan-legacy-mcp:v1.0.1"
      ],
      "env": {
        "AVANAN_APP_ID": "<AVANAN_APP_ID>",
        "AVANAN_TOKEN": "<AVANAN_TOKEN>",
        "AVANAN_SECRET": "<AVANAN_SECRET>"
      }
    }
  }
}

环境变量

AVANAN_APP_ID必填

Application ID provided by Avanan Support (x-av-app-id)

AVANAN_TOKEN必填secret

Token from the Avanan auth handshake (x-av-token)

AVANAN_SECRET必填secret

Shared secret used to compute the x-av-sig HMAC

AVANAN_REGION可选

API region: us, eu, ca, or ap (defaults to JWT region claim, then us)

MCP_TRANSPORT可选

Transport mode: 'stdio' for local CLI use, 'http' for gateway hosting

MCP_HTTP_PORT可选

HTTP transport listen port

LOG_LEVEL可选

Log verbosity: debug, info, warn, error

相关资源

统一 Manifest

{
  "id": "io.github.wyre-technology/avanan-legacy-mcp",
  "type": "mcp-server",
  "version": "1.0.1",
  "displayName": "Avanan MSP (Legacy SmartAPI)",
  "description": "MCP server for the Avanan MSP SmartAPI — manage child MSPs, users, tenants, licenses, and usage.",
  "repository": {
    "url": "https://github.com/wyre-technology/avanan-legacy-mcp",
    "source": "github"
  },
  "homepage": "https://github.com/wyre-technology/avanan-legacy-mcp",
  "distribution": {
    "packages": [
      {
        "registryType": "oci",
        "identifier": "ghcr.io/wyre-technology/avanan-legacy-mcp:v1.0.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "AVANAN_APP_ID",
            "description": "Application ID provided by Avanan Support (x-av-app-id)",
            "isRequired": true
          },
          {
            "name": "AVANAN_TOKEN",
            "description": "Token from the Avanan auth handshake (x-av-token)",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "AVANAN_SECRET",
            "description": "Shared secret used to compute the x-av-sig HMAC",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "AVANAN_REGION",
            "description": "API region: us, eu, ca, or ap (defaults to JWT region claim, then us)"
          },
          {
            "name": "MCP_TRANSPORT",
            "description": "Transport mode: 'stdio' for local CLI use, 'http' for gateway hosting"
          },
          {
            "name": "MCP_HTTP_PORT",
            "description": "HTTP transport listen port"
          },
          {
            "name": "LOG_LEVEL",
            "description": "Log verbosity: debug, info, warn, error"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.wyre-technology/avanan-legacy-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.wyre-technology%2Favanan-legacy-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Avanan MSP (Legacy SmartAPI) — MCP Server 安装与配置 · AgentHub