Matomo Mcp Server By Openmost
- agent-framework
Connect you AI agent to Matomo using this MCP server. Extend the capabilities of your gent with the Matomo API.
About
What is Matomo Mcp Server By Openmost?
It is a client that bridges Claude AI Desktop (or any LLM supporting the Model Context Protocol) to a Matomo analytics instance via the Openmost MCP server. It runs on Windows, Linux, and macOS and is intended for users who want to query Matomo analytics through an AI chat interface.
How to use Matomo Mcp Server By Openmost?
Clone the repository, install dependencies with npm install, then register the client in Claude Desktop’s claude_desktop_config.json file (path varies by OS). Supply the Openmost MCP token, your Matomo host URL, and your Matomo auth token via environment variables. Restart Claude Desktop and select the openmost-matomo-mcp server from the model selector to begin interacting.
Key features of Matomo Mcp Server By Openmost
- Connects Claude Desktop to any Matomo analytics instance
- Uses the standard Model Context Protocol (MCP)
- Cross‑platform: Windows, Linux, and macOS
- Configuration via a single JSON file
- Environment variables for authentication tokens
- Enables natural‑language queries of Matomo data
Use cases of Matomo Mcp Server By Openmost
- Ask Claude Desktop for real‑time Matomo visitor statistics
- Request custom analytics reports using plain English
- Integrate Matomo data into an AI‑powered workflow
- Troubleshoot or explore analytics without leaving the chat
FAQ from Matomo Mcp Server By Openmost
What does this client do?
It acts as a bridge that allows Claude Desktop (or any MCP‑compatible LLM) to query a Matomo analytics instance through the Openmost MCP server.
Which platforms support Matomo Mcp Server By Openmost?
It works with Claude Desktop and any other LLM that supports the Model Context Protocol. The client itself runs on Windows, Linux, and macOS.
How do I get the Openmost MCP token?
Contact Openmost at ronan@openmost.io to obtain the required OPENMOST_MCP_TOKEN.
Where is the Claude Desktop configuration file located?
The claude_desktop_config.json file is stored at:
- Windows: C:\Users\your-name\AppData\Roaming\Claude\claude_desktop_config.json
- Linux: ~/.config/claude_desktop/claude_desktop_config.json
- macOS: ~/Library/Application Support/ClaudeDesktop/claude_desktop_config.json
Do I need to restart Claude Desktop after configuring?
Yes, you must completely quit and restart Claude Desktop for the changes to take effect.
Details
- Author
- openmost
- Category
- agent-framework
- Repository
- openmost/matomo-mcp-client
Openmost Matomo MCP Client
📋 Description
This repository contains the client for the Openmost Matomo MCP server.
It enables you to connect Claude AI Desktop (or any other LLM that supports MCP — Model Context Protocol) to a Matomo analytics instance, via the Openmost MCP server.
You need to install and configure this client to act as a bridge between your Claude Desktop app and your Matomo analytics data.
---
🚀 Installation
1️⃣ Clone the repository
git clone https://github.com/openmost/matomo-mcp-client
cd matomo-mcp-client
2️⃣ Install dependencies
npm install
---
🔧 Configuration
Register the MCP client in Claude Desktop
You need to tell Claude Desktop about this MCP client by editing its configuration file.
📄 Location of the configuration file
You must add your MCP server config into the file:
claude_desktop_config.json
If it does not exist yet, you can create it.
Depending on your operating system, the file should be placed at:
| OS | Path |
|----------|--------------------------------------------------------------------------|
| Windows | C:\Users\your-name\AppData\Roaming\Claude\claude_desktop_config.json |
| Linux | ~/.config/claude_desktop/claude_desktop_config.json |
| macOS | ~/Library/Application Support/ClaudeDesktop/claude_desktop_config.json |
---
📝 Example configuration
Below is an example of how to register the Openmost Matomo MCP client in claude_desktop_config.json.
You can adapt the paths, tokens, and URLs to fit your environment.
{
"mcpServers": {
"openmost-matomo-mcp": {
"command": "node",
"args": [
"absolute/path/to/matomo-mcp-client.js",
"--url=https://matomo-mcp.openmost.io"
],
"env": {
"OPENMOST_MCP_TOKEN": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"MATOMO_HOST": "https://matomo.example.com",
"MATOMO_TOKEN_AUTH": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}
}
}
✅ Replace:
- OPENMOST_MCP_TOKEN with the token you got from Openmost (ronan@openmost.io).
- MATOMO_HOST with the URL of your Matomo instance.
- MATOMO_TOKEN_AUTH with your Matomo API token.
---
🔄 Restart Claude Desktop
After saving the configuration file, completely quit and restart Claude Desktop for the changes to take effect.
---
🎉 Usage
Once everything is configured and Claude has restarted:
- Open Claude Desktop.
- In the model selector, choose the MCP server named:
openmost-matomo-mcp
- Start interacting!
Your requests will now be processed through the Matomo MCP client and served by your Matomo analytics data.
---
📖 Resources
- Openmost
- Matomo Analytics
- Claude Desktop
- MCP Protocol