Open-source MCP servers for the Fluent WordPress ecosystem (FluentCRM, Fluent Support, Fluent Boards, Fluent Community, FluentAffiliate) — 175 tools for AI agents
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"fluentsupport": {
"env": {
"FLUENTSUPPORT_URL": "https://your-wordpress-site.com",
"FLUENTSUPPORT_USERNAME": "your-wp-username",
"FLUENTSUPPORT_APP_PASSWORD": "your-application-password"
},
"args": [
"/path/to/fluent-support-mcp/dist/index.js"
],
"command": "node"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Open-source MCP (Model Context Protocol) servers for the Fluent WordPress ecosystem by WPManageNinja.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'fluentcart-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked fluentcart-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools / marketing
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP Security Weekly
Get CVE alerts and security updates for Fluent Mcp Servers and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Open-source MCP (Model Context Protocol) servers for the Fluent WordPress ecosystem by WPManageNinja.
Connect your AI agents (Claude, Cursor, Codex, Windsurf) to FluentCRM, FluentCart, Fluent Support, Fluent Boards, Fluent Community, and FluentAffiliate via the standard MCP protocol.
| Server | Plugin | Tools | Status |
|---|---|---|---|
| fluent-support-mcp | Fluent Support | 51 | Ready |
| fluent-crm-mcp | FluentCRM | 40 | Ready |
| fluent-boards-mcp | Fluent Boards | 30 | Ready |
| fluent-community-mcp | Fluent Community | 30 | Ready |
| fluent-affiliate-mcp | FluentAffiliate | 24 | Ready |
| fluentcart-mcp | FluentCart | 279 | By vcode.sh |
| Total (full ecosystem) | 454 |
Note: We didn't build a FluentCart MCP because vcode.sh already built an excellent one with 279 tools and dynamic mode support. Install it with: npx -y fluentcart-mcp
Each server follows the same pattern:
# Clone this repo
git clone https://github.com/carlosrodera/fluent-mcp-servers.git
cd fluent-mcp-servers
# Build the server you need
cd fluent-support-mcp
npm install && npm run build
Set environment variables:
export FLUENTSUPPORT_URL="https://your-wordpress-site.com"
export FLUENTSUPPORT_USERNAME="your-wp-username"
export FLUENTSUPPORT_APP_PASSWORD="your-application-password"
claude mcp add fluentsupport -- node /path/to/fluent-support-mcp/dist/index.js
Add to claude_desktop_config.json:
{
"mcpServers": {
"fluentsupport": {
"command": "node",
"args": ["/path/to/fluent-support-mcp/dist/index.js"],
"env": {
"FLUENTSUPPORT_URL": "https://your-wordpress-site.com",
"FLUENTSUPPORT_USERNAME": "your-wp-username",
"FLUENTSUPPORT_APP_PASSWORD": "your-application-password"
}
}
}
}
All servers share the same architecture:
src/
index.ts CLI entry point (stdio transport)
server.ts MCP server (static + dynamic modes)
cache.ts In-memory TTL cache
config/
types.ts Configuration types
resolver.ts Env vars + config file resolution
api/
client.ts HTTP client with Basic Auth
errors.ts Typed API errors
tools/
_factory.ts Tool creation helpers (GET/POST/PUT/DELETE)
dynamic.ts 3 meta-tools for dynamic mode
index.ts Tool aggregator
*.ts Tool modules by domain
Each server supports dynamic mode for reduced token usage:
node dist/index.js --mode dynamic
In dynamic mode, only 3 meta-tools are loaded instead of all tools:
search_tools — Find tools by keyworddescribe_tools — Get full schema for specific toolsexecute_tool — Execute a discovered toolThis reduces context window usage by ~96%.
All servers use WordPress Application Passwords (built into WordPress since 5.6). No additional plugins required.
Each server needs 3 environment variables:
{PREFIX}_URL — Your WordPress site URL{PREFIX}_USERNAME — WordPress username{PREFIX}_APP_PASSWORD — Application PasswordContributions welcome! To add tools or fix endpoints:
src/tools/