Installation Guide

Get mendix-expert running in 5 minutes


Prerequisites


Step 1: Clone the Repository

# Choose where to install (anywhere you want)
cd C:\Projects

# Clone
git clone https://github.com/jordnlvr/mendix-mcp-server.git
cd mendix-mcp-server

# Install dependencies
npm install

Step 2: Test It Works

node src/index.js

You should see output about the server starting. Press Ctrl+C to stop.


Step 3: Configure Your AI Client

Option A: VS Code Copilot

  1. Open VS Code
  2. Press Ctrl+, to open Settings
  3. Click the {} icon (top right) to open JSON
  4. Add this (update the path!):
"chat.mcp.servers": {
  "mendix-expert": {
    "type": "stdio",
    "command": "node",
    "args": ["C:/Projects/mendix-mcp-server/src/index.js"]
  }
}
  1. Restart VS Code

Option B: Claude Desktop

  1. Open %APPDATA%\Claude\claude_desktop_config.json
  2. Add:
{
  "mcpServers": {
    "mendix-expert": {
      "command": "node",
      "args": ["C:/Projects/mendix-mcp-server/src/index.js"]
    }
  }
}
  1. Restart Claude Desktop

Step 4: Verify It’s Working

In VS Code Copilot Chat or Claude:

@mendix-expert What are the best practices for microflow naming?

You should get a response with Mendix-specific knowledge!


Updating

cd C:\Projects\mendix-mcp-server
git pull
npm install  # if package.json changed

Troubleshooting

“node is not recognized”

Node.js isn’t in your PATH. Either:

  • Restart your terminal after installing Node
  • Or use the full path: "C:/Program Files/nodejs/node.exe"

“ENOENT: no such file”

The path in your config is wrong. Make sure:

  • Use forward slashes / or escaped backslashes \\
  • The path points to src/index.js, not just the folder

Server not appearing in Copilot

  1. Check the path is correct
  2. Restart VS Code completely (not just reload)
  3. Check VS Code Output panel for errors

Next Steps


Back to top

Copyright © 2025 Mendix Expert MCP Server. Distributed under MIT License.