MCP Vmanomaly
M

MCP Vmanomaly

This is an MCP server implemented for the VictoriaMetrics anomaly detection tool vmanomaly, which allows AI assistants to directly interact with the vmanomaly REST API through the protocol, enabling functions such as health checks, model management, configuration generation, and documentation search.
2.5 points
6.6K

What is the vmanomaly MCP server?

The vmanomaly MCP server is a bridge that connects AI assistants (such as Claude) with the VictoriaMetrics anomaly detection system. It allows you to manage your anomaly detection tasks by conversing with the AI assistant in natural language, such as checking the system health, configuring detection models, and generating alert rules. You no longer need to memorize complex commands or configuration syntax; just tell the AI assistant your needs.

How to use the vmanomaly MCP server?

The usage process is very simple: First, you need to configure and start this MCP server in your AI client (such as Cursor, Claude Desktop). Then, in the chat, the AI assistant can automatically call vmanomaly's tools to help you. For example, you can say, 'I want to set up anomaly detection for CPU usage,' and the AI assistant will list the available models and generate the configuration for you.

Applicable scenarios

This tool is very suitable for operations engineers, SREs, and developers for: - Quickly configure anomaly detection for new monitoring metrics (such as CPU, memory, application latency). - Manage and verify existing anomaly detection model configurations. - When encountering problems, quickly query vmanomaly's official documentation for help. - Automatically generate alert rules for anomaly detection scores.

Main Features

Health and Information Monitoring
Check at any time whether your vmanomaly server is running normally, and obtain version, build information, and service metrics.
Model Management
Browse and learn about more than 10 anomaly detection models (such as zscore, prophet, mad, etc.), obtain descriptions of their configuration parameters, and verify whether your model configuration is correct.
Configuration Generation and Verification
According to your needs, the AI assistant can help you generate a complete vmanomaly YAML configuration file and verify it before application to avoid errors.
Alert Rule Generation
Automatically generate YAML rules available for the VictoriaMetrics alerting system (VMAlert) to issue alerts for anomaly detection scores.
Offline Documentation Search
The server has the complete vmanomaly official documentation built - in. The AI assistant can quickly search and answer your questions about configuration or usage without an internet connection.
Advantages
**Natural Language Interaction**: No need to memorize complex commands. Manage the anomaly detection system by speaking.
**Improve Efficiency**: Quickly generate and verify configurations, reducing the time and errors of manually writing YAML files.
**Knowledge Integration**: The AI assistant combines real - time system status and offline documentation to provide more accurate suggestions.
**Flexible Deployment**: Supports multiple running methods (local binary, Docker) and multiple AI clients.
Limitations
**Dependent on Back - end Services**: You need to have a running vmanomaly instance (version 1.28.3+) to use all functions.
**Manual Confirmation Required**: The content generated by the AI (such as configurations, rules) still needs to be finally reviewed and tested by engineers.
**Limited by AI Model Capabilities**: The quality and accuracy of the answers partially depend on the capabilities of the AI assistant (such as Claude) you are using.

How to Use

Prepare the Environment
Ensure that you have an accessible vmanomaly server (default address http://localhost:8490). Note down the access address and the required authentication token (if any).
Install the MCP Server
Choose one way to install: 1. **Download the Binary File**: Download the compressed package corresponding to your operating system from the GitHub Releases page, and run it after decompression. 2. **Use Docker (Recommended)**: Quickly start it with a single Docker command without managing dependencies. 3. **Build from Source Code**: Suitable for developers.
Configure the AI Client
In the settings of your AI tool (such as Cursor, Claude Desktop), add the MCP server configuration. You need to specify the running command and environment variables of the MCP server (mainly the address of vmanomaly).
Start the Conversation
In the chat window of the AI assistant, directly state your needs. For example: 'Help me check if vmanomaly is healthy' or 'I want to configure anomaly detection for the service error rate.' The AI assistant will automatically call the appropriate tools to help you.

Usage Examples

Example 1: Quickly Configure Detection for a New Metric
You have just added a monitoring metric `http_request_duration_seconds` in VictoriaMetrics and now want to set up anomaly detection for it.
Example 2: Diagnose a Non - Working Detection Task
An anomaly detection task you configured is not producing the expected output scores, and you want to troubleshoot the problem.
Example 3: Set Up Alerts for Anomaly Scores
Anomaly detection is running and has produced the `anomaly_score` metric. You want to receive alerts when the score is too high.

Frequently Asked Questions

Do I have to have vmanomaly to use this MCP server?
Which AI clients/applications does it support?
What's the difference between running with Docker and running the binary file directly?
Can I directly use the configuration suggestions given by the AI assistant?
Does the documentation search function require an internet connection?

Related Resources

vmanomaly Official Documentation
Learn all the details, concepts, and advanced configurations of the vmanomaly anomaly detection tool itself.
GitHub Project Repository
Get the source code, report issues, request new features, or contribute.
Model Context Protocol Official Website
Learn about the standards, working principles, and list of supported clients of the MCP protocol.
VictoriaMetrics Community Slack
Join the community and communicate with other users and developers about VictoriaMetrics and vmanomaly issues.

Installation

Copy the following command to your Client for configuration
{
  "mcpServers": {
    "vmanomaly": {
      "command": "/path/to/mcp-vmanomaly",
      "env": {
        "VMANOMALY_ENDPOINT": "http://localhost:8490",
        "VMANOMALY_BEARER_TOKEN": "<YOUR_TOKEN>",
        "VMANOMALY_HEADERS": "X-Custom=value1,X-Auth=value2"
      }
    }
  }
}

{
  "mcpServers": {
    "vmanomaly": {
      "command": "docker",
      "args": [
        "run",
        "-i", "--rm",
        "-e", "VMANOMALY_ENDPOINT",
        "-e", "VMANOMALY_BEARER_TOKEN",
        "-e", "VMANOMALY_HEADERS",
        "ghcr.io/victoriametrics-community/mcp-vmanomaly"
      ],
      "env": {
        "VMANOMALY_ENDPOINT": "http://localhost:8490",
        "VMANOMALY_BEARER_TOKEN": "<YOUR_TOKEN>",
        "VMANOMALY_HEADERS": "X-Custom=value1,X-Auth=value2"
      }
    }
  }
}
Note: Your key is sensitive information, do not share it with anyone.

Alternatives

R
Rsdoctor
Rsdoctor is a build analysis tool specifically designed for the Rspack ecosystem, fully compatible with webpack. It provides visual build analysis, multi - dimensional performance diagnosis, and intelligent optimization suggestions to help developers improve build efficiency and engineering quality.
TypeScript
6.8K
5 points
N
Next Devtools MCP
The Next.js development tools MCP server provides Next.js development tools and utilities for AI programming assistants such as Claude and Cursor, including runtime diagnostics, development automation, and document access functions.
TypeScript
6.4K
5 points
T
Testkube
Testkube is a test orchestration and execution framework for cloud-native applications, providing a unified platform to define, run, and analyze tests. It supports existing testing tools and Kubernetes infrastructure.
Go
5.2K
5 points
M
MCP Windbg
An MCP server that integrates AI models with WinDbg/CDB for analyzing Windows crash dump files and remote debugging, supporting natural language interaction to execute debugging commands.
Python
7.7K
5 points
R
Runno
Runno is a collection of JavaScript toolkits for securely running code in multiple programming languages in environments such as browsers and Node.js. It achieves sandboxed execution through WebAssembly and WASI, supports languages such as Python, Ruby, JavaScript, SQLite, C/C++, and provides integration methods such as web components and MCP servers.
TypeScript
6.0K
5 points
N
Netdata
Netdata is an open-source real-time infrastructure monitoring platform that provides second-level metric collection, visualization, machine learning-driven anomaly detection, and automated alerts. It can achieve full-stack monitoring without complex configuration.
Go
6.7K
5 points
M
MCP Server
The Mapbox MCP Server is a model context protocol server implemented in Node.js, providing AI applications with access to Mapbox geospatial APIs, including functions such as geocoding, point - of - interest search, route planning, isochrone analysis, and static map generation.
TypeScript
5.7K
4 points
U
Uniprof
Uniprof is a tool that simplifies CPU performance analysis. It supports multiple programming languages and runtimes, does not require code modification or additional dependencies, and can perform one-click performance profiling and hotspot analysis through Docker containers or the host mode.
TypeScript
7.6K
4.5 points
G
Gitlab MCP Server
Certified
The GitLab MCP server is a project based on the Model Context Protocol that provides a comprehensive toolset for interacting with GitLab accounts, including code review, merge request management, CI/CD configuration, and other functions.
TypeScript
19.3K
4.3 points
N
Notion Api MCP
Certified
A Python-based MCP Server that provides advanced to-do list management and content organization functions through the Notion API, enabling seamless integration between AI models and Notion.
Python
17.7K
4.5 points
D
Duckduckgo MCP Server
Certified
The DuckDuckGo Search MCP Server provides web search and content scraping services for LLMs such as Claude.
Python
59.1K
4.3 points
M
Markdownify MCP
Markdownify is a multi-functional file conversion service that supports converting multiple formats such as PDFs, images, audio, and web page content into Markdown format.
TypeScript
29.8K
5 points
U
Unity
Certified
UnityMCP is a Unity editor plugin that implements the Model Context Protocol (MCP), providing seamless integration between Unity and AI assistants, including real - time state monitoring, remote command execution, and log functions.
C#
25.2K
5 points
F
Figma Context MCP
Framelink Figma MCP Server is a server that provides access to Figma design data for AI programming tools (such as Cursor). By simplifying the Figma API response, it helps AI more accurately achieve one - click conversion from design to code.
TypeScript
54.8K
4.5 points
G
Gmail MCP Server
A Gmail automatic authentication MCP server designed for Claude Desktop, supporting Gmail management through natural language interaction, including complete functions such as sending emails, label management, and batch operations.
TypeScript
17.6K
4.5 points
M
Minimax MCP Server
The MiniMax Model Context Protocol (MCP) is an official server that supports interaction with powerful text-to-speech, video/image generation APIs, and is suitable for various client tools such as Claude Desktop and Cursor.
Python
37.7K
4.8 points
AIBase
Zhiqi Future, Your AI Solution Think Tank
© 2026AIBase