Cline Setup¶
Add the Listmonk MCP server to Cline extension in VS Code.
Configuration¶
- Install Cline extension in VS Code
- Open Cline settings
- Add MCP server configuration:
{
"mcpServers": {
"listmonk": {
"command": "uvx",
"args": ["listmonk-mcp-bridge"],
"env": {
"LISTMONK_MCP_URL": "http://localhost:9000",
"LISTMONK_MCP_USERNAME": "your-api-username",
"LISTMONK_MCP_PASSWORD": "your-api-token"
}
}
}
}
Environment Variables¶
LISTMONK_MCP_URL: Your Listmonk server URLLISTMONK_MCP_USERNAME: API user created in Admin → UsersLISTMONK_MCP_PASSWORD: API token (not user password)
Prerequisites¶
-
Install uvx (if not already installed):
bash pip install uv -
Create API user and token in Listmonk admin interface:
- Go to Admin → Users in your Listmonk instance
-
Create a new API user and token
-
Restart VS Code after adding configuration