Fluent MCP Server Extension
Package
Changed on:
31 Mar 2026
| Publisher: | Fluent Commerce |
|---|---|
| Website: | Fluent Commerce |
Download Package
Version History
Overview
MCP (Model Context Protocol) extension server for Fluent Commerce.Exposes 59 Fluent Commerce MCP tools for event forensics, workflow transitions, GraphQL execution and planning, batch ingestion plus payload planning, entity CRUD plus mutation planning, metrics, time-window resolution, settings, workflow management, environment discovery, and test automation — powered by`@fluentcommerce/fc-connect-sdk`.Detailed Technical Description
[!CAUTION]🧪 EXPERIMENTAL — LABS PROJECT
This package is NOT production-ready. It is an internal labs experiment under active development.- No stability guarantees — APIs, tool names, schemas, and config may change or break between any release
- No support — this is not an officially supported Fluent Commerce product
- No warranty — provided as-is for experimentation and internal evaluation only
- Do NOT use in production without thorough review
Requirements
- Node.js 20+
- Fluent CLI installed when using profile auth (
`FLUENT_PROFILE`) - Fluent Commerce API credentials (see Configuration)
Automated setup (recommended)
If you use`@fluentcommerce/ai-skills`, a single command installs skills AND configures this MCP server:`npx @fluentcommerce/ai-skills install --profile YOUR_PROFILE --profile-retailer YOUR_RETAILER_REF`This creates `.mcp.json` with `fluent-mcp-extn` pre-configured. Skip to Verify connection.Install
From npm (recommended)
No install needed —`npx` runs it directly from the npm registry:`npx @fluentcommerce/fluent-mcp-extn`This starts the MCP stdio server process. In a plain terminal it appears idle because it is waiting for MCP JSON-RPC input from your IDE/agent.Or install as a project dependency:`npm install @fluentcommerce/fluent-mcp-extn`From source
`git clone https://bitbucket.org/fluentcommerce/fluent-mcp-extn.git`cd fluent-mcp-extn
npm install && npm run buildThen use in
`.mcp.json`:`{`"command": "node",
"args": ["path/to/fluent-mcp-extn/dist/index.js"]
}