AgentHubAgentHub

ead-factory

MCP ServerMCP Registry官方收录

io.github.g-digital-by-Garrigues/ead-factory · v1.0.15

EAD Factory MCP — Digital Trust services APIs for your agents

概览

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

安装

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

{
  "mcpServers": {
    "ead-factory": {
      "command": "npx",
      "args": [
        "-y",
        "@g-digital/mcp-ead-factory"
      ],
      "env": {
        "API_BASE_URL": "<API_BASE_URL>",
        "FULL_FLOW_EMAIL_BASE": "<FULL_FLOW_EMAIL_BASE>",
        "FULL_FLOW_FILE_PATH": "<FULL_FLOW_FILE_PATH>",
        "HTTP_PORT": "<HTTP_PORT>",
        "OKTA_CLIENT_ID": "<OKTA_CLIENT_ID>",
        "OKTA_CLIENT_SECRET": "<OKTA_CLIENT_SECRET>",
        "OKTA_SCOPE": "<OKTA_SCOPE>",
        "OKTA_TOKEN_URL": "<OKTA_TOKEN_URL>",
        "POLL_INTERVAL_MS": "<POLL_INTERVAL_MS>",
        "POLL_MAX_ATTEMPTS": "<POLL_MAX_ATTEMPTS>",
        "SIGNATURE_API_BASE_URL": "<SIGNATURE_API_BASE_URL>",
        "TRANSPORT": "<TRANSPORT>"
      }
    }
  }
}

环境变量

API_BASE_URL必填

Evidence Manager API base URL

FULL_FLOW_EMAIL_BASE必填

Full flow base email — used to compose participant emails (user+signatory@domain, etc.)

FULL_FLOW_FILE_PATH必填

Full flow default file path

HTTP_PORT必填

HTTP_PORT

OKTA_CLIENT_ID必填

OKTA_CLIENT_ID

OKTA_CLIENT_SECRET必填secret

OKTA_CLIENT_SECRET (See https://eadtrust.example.com/onboarding for credential acquisition.)

OKTA_SCOPE必填

OKTA_SCOPE

OKTA_TOKEN_URL必填

OAuth credentials (Okta client_credentials flow) Used both for calling Evidence Manager API and for verifying incoming Bearer tokens (HTTP mode)

POLL_INTERVAL_MS必填

Polling configuration for evidence status

POLL_MAX_ATTEMPTS必填

POLL_MAX_ATTEMPTS

SIGNATURE_API_BASE_URL必填

Signature Manager API base URL

TRANSPORT必填

Transport: "stdio" for local Claude Code, "http" for remote deployment with auth

相关资源

统一 Manifest

{
  "id": "io.github.g-digital-by-Garrigues/ead-factory",
  "type": "mcp-server",
  "version": "1.0.15",
  "displayName": "ead-factory",
  "description": "EAD Factory MCP — Digital Trust services APIs for your agents",
  "repository": {
    "url": "https://github.com/g-digital-by-Garrigues/EAD-Factory-MCP",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@g-digital/mcp-ead-factory",
        "version": "1.0.15",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "API_BASE_URL",
            "description": "Evidence Manager API base URL",
            "isRequired": true
          },
          {
            "name": "FULL_FLOW_EMAIL_BASE",
            "description": "Full flow base email — used to compose participant emails (user+signatory@domain, etc.)",
            "isRequired": true
          },
          {
            "name": "FULL_FLOW_FILE_PATH",
            "description": "Full flow default file path",
            "isRequired": true
          },
          {
            "name": "HTTP_PORT",
            "description": "HTTP_PORT",
            "isRequired": true
          },
          {
            "name": "OKTA_CLIENT_ID",
            "description": "OKTA_CLIENT_ID",
            "isRequired": true
          },
          {
            "name": "OKTA_CLIENT_SECRET",
            "description": "OKTA_CLIENT_SECRET (See https://eadtrust.example.com/onboarding for credential acquisition.)",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "OKTA_SCOPE",
            "description": "OKTA_SCOPE",
            "isRequired": true
          },
          {
            "name": "OKTA_TOKEN_URL",
            "description": "OAuth credentials (Okta client_credentials flow) Used both for calling Evidence Manager API and for verifying incoming Bearer tokens (HTTP mode)",
            "isRequired": true
          },
          {
            "name": "POLL_INTERVAL_MS",
            "description": "Polling configuration for evidence status",
            "isRequired": true
          },
          {
            "name": "POLL_MAX_ATTEMPTS",
            "description": "POLL_MAX_ATTEMPTS",
            "isRequired": true
          },
          {
            "name": "SIGNATURE_API_BASE_URL",
            "description": "Signature Manager API base URL",
            "isRequired": true
          },
          {
            "name": "TRANSPORT",
            "description": "Transport: \"stdio\" for local Claude Code, \"http\" for remote deployment with auth",
            "isRequired": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.g-digital-by-Garrigues/ead-factory",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.g-digital-by-Garrigues%2Fead-factory/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
ead-factory — MCP Server 安装与配置 · AgentHub