mcp-reference-server
Verified Safeby commerce-operations-foundation
Overview
The Commerce Operations Foundation MCP Server standardizes the interface between AI agents (like Claude) and fulfillment systems, enabling AI to manage e-commerce operations like order capture, inventory, and fulfillment via plug-and-play adapters.
Installation
node dist/index.jsEnvironment Variables
- NODE_ENV
- SERVER_PORT
- ADAPTER_TYPE
- ADAPTER_NAME
- ADAPTER_PACKAGE
- ADAPTER_PATH
- ADAPTER_EXPORT
- ADAPTER_CONFIG
- LOG_LEVEL
- LOG_DIR
- AUTH_ENABLED
- FEATURE_...
Security Notes
The server explicitly uses dynamic imports to load adapters from NPM packages or local files (`AdapterFactory`). This design, while enabling flexibility, poses a significant security risk if adapters from untrusted sources are loaded, as they execute with full system permissions. The `README.md` and `AdapterFactory` code itself acknowledge this warning. `ApiClient` handles API keys (e.g., `X-API-Key`), which are sensitive credentials and must be managed securely (e.g., via environment variables). A `LogSanitizer` is implemented to redact sensitive data in logs, which is a good practice. Overall, safe operation relies heavily on trusted adapter sources and a secure deployment environment (e.g., containerization, whitelisting).
Similar Servers
klavis
Creates an AI agent that uses Klavis Strata to interact with Gmail and YouTube through MCP, demonstrating how to summarize a YouTube video and email the summary.
kubernetes-mcp-server
Provides a Model Context Protocol (MCP) server for AI agents to interact with Kubernetes and OpenShift clusters, enabling AI-driven cluster management and diagnosis.
metorial-platform
The Metorial Platform is an open source integration platform for agentic AI, designed to connect any AI model to thousands of APIs, data sources, and tools with a single function call, built to scale for enterprise-grade AI applications.
d365fo-client
Provides a Model Context Protocol (MCP) server for Microsoft Dynamics 365 Finance & Operations, enabling AI agents and other MCP-compatible tools to perform metadata management, CRUD operations, action calls, label resolution, and environment monitoring.