Skip to main content
The Model Context Protocol (MCP) provides a standardized way for AI agents to discover and use tools exposed by external services. For monitoring platforms, this means agents can create monitors, investigate incidents, and manage configurations through a well-defined interface.

What is MCP?

MCP is an open protocol that connects AI applications (clients) to tool providers (servers):
The server advertises a catalog of tools with typed parameters. The client (your AI agent) browses the catalog, selects a tool, provides arguments, and receives structured results.

Why MCP for monitoring?

Standardized tool discovery

Without MCP, each monitoring API is different — different endpoints, auth schemes, and parameter names. MCP normalizes this into a consistent interface:
The agent doesn’t need to know REST endpoints or HTTP methods. It just calls the tool.

Type safety

MCP tool parameters are typed and validated. The server rejects invalid inputs before they reach the API, giving the agent clear error messages to self-correct.

Authentication handled once

Configure API credentials when setting up the MCP server. Every tool call inherits that authentication — the agent never sees or handles tokens directly.

MCP transport modes

stdio (standard I/O)

The AI client spawns the MCP server as a subprocess. Communication happens through stdin/stdout:
Best for: local development with Cursor, Claude Desktop, or Windsurf.

HTTP (Streamable HTTP)

The MCP server runs as a standalone HTTP service. Clients connect over the network:
Best for: shared team servers, CI/CD pipelines, or remote access.

What monitoring agents can do

Example agent interaction

Security considerations

  • Scope API tokens — use organization-scoped tokens with minimum required permissions
  • Audit tool calls — MCP servers can log every tool invocation for compliance
  • Review before deploy — agents should validate and plan before applying changes
  • Network isolation — run MCP servers behind your firewall, not on the public internet

DevHelm MCP Server

MCP Server setup

Install and configure the DevHelm MCP server.

Tools reference

Complete catalog of 120 available tools.