MCP server for Salesforce B2C Commerce Cloud development assistance including logs, debugging, and development tools
MCP server for Salesforce B2C Commerce Cloud development assistance including logs, debugging, and development tools. The sfcc mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.
An AI-powered Model Context Protocol (MCP) server that provides comprehensive access to Salesforce B2C Commerce Cloud development tools, documentation, and runtime diagnostics.
Everything the assistant can do here goes through one of these:
OAuth — client-id + client-secretReal — time log analysis and job logs (13 tools)Call — time Capability Guarding** (src/core/server.ts): Rejects execution of tools that are unavailable in the current mode, so hidden tools are notExtensibility — Adding a new tool usually means adding a schema + minimal handler logic (or a new handler if a new domain)Security — Tools that require credentials are never exposed when capability flags are falseTestability — Unit tests target clients & modules; integration/MCP tests validate handler routing and response structurePerformance — Tail log reads + lightweight caching (cache.ts, log-cache.ts) reduce unnecessary I/OmacOS — /var/folders/{user-id}/T/sfcc-mcp-logs/Linux — /tmp/sfcc-mcp-logs/Windows — %TEMP%\sfcc-mcp-logs\sfcc-mcp-info.log — General application logs and startup messagessfcc-mcp-debug.log — Detailed debug information (only when --debug is enabled)You will need 2 environment variables: SFCC_CLIENT_ID, SFCC_CLIENT_SECRET. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Installation goes through your MCP client rather than a global install: point it at aegis on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
Plenty of monitoring and observability servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Sfcc's toolset — OAuth, Real, Call and 11 more — is a fair guide to whether it matches your workflow. It is maintained by GitHub Actions; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| OAuth | client-id + client-secret |
| Real | time log analysis and job logs (13 tools) |
| Call | time Capability Guarding** (src/core/server.ts): Rejects execution of tools that are unavailable in the current mode, so hidden tools are not callable via direct tools/call requests. |
| Extensibility | Adding a new tool usually means adding a schema + minimal handler logic (or a new handler if a new domain). |
| Security | Tools that require credentials are never exposed when capability flags are false. |
| Testability | Unit tests target clients & modules; integration/MCP tests validate handler routing and response structure. |
| Performance | Tail log reads + lightweight caching (cache.ts, log-cache.ts) reduce unnecessary I/O. |
| macOS | /var/folders/{user-id}/T/sfcc-mcp-logs/ |
| Linux | /tmp/sfcc-mcp-logs/ |
| Windows | %TEMP%\sfcc-mcp-logs\ |
| sfcc-mcp-info.log | General application logs and startup messages |
| sfcc-mcp-debug.log | Detailed debug information (only when --debug is enabled) |
| sfcc-mcp-error.log | Error messages and stack traces |
| sfcc-mcp-warn.log | Warning messages |
{
"mcpServers": {
"sfcc-dev": {
"command": "npx",
"args": ["sfcc-dev-mcp"]
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| SFCC_CLIENT_ID | Configuration value read at startup. | Optional |
| SFCC_CLIENT_SECRET | Credential the server authenticates with. | Yes |
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Dashboards, Prometheus and Loki queries, incidents and alerts — observability by conversation.
Errors with full context — stack traces, issue triage and AI-powered root-cause analysis from Sentry's server.
Enables enhanced web research capabilities for large language models through intelligent search queuing and advanced content extraction.
Automates browser interactions and enables Large Language Models (LLMs) to interact with web pages through Playwright and Chrome DevTools Protocol
Guides tool usage by providing recommendations for MCP tools at each problem-solving stage.