MCP Solarwinds MCP Server

MCP server for SolarWinds Observability logs

Local serverstdioTypeScript

What is the MCP Solarwinds MCP server?

Most monitoring and observability work still happens through a UI a human drives. MCP Solarwinds MCP server moves it into the conversation instead. MCP server for SolarWinds Observability logs.

The short version

A Model Context Protocol (MCP) server for accessing and visualizing SolarWinds Observability logs.

Getting it running

issue on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

The tools it exposes

The server publishes 5 tools. What each one is for:

  • Tools — The Tools tool exposed by this server
  • search_logs — Search SolarWinds Observability logs with optional filtering - Takes search parameters including filter, time range, and pagination options - Returns
  • visualize_logs — Generate a histogram json response for of log events - Formatted for Claude and canvas representations - Configurable time intervals (minute, hour
  • Resources — The Resources tool exposed by this server
  • Debugging — Since MCP servers communicate over stdio, debugging can be challenging. The MCP Inspector provides helpful debugging tools:

What it needs from you

Configuration is passed through the environment: SOLARWINDS_API_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of monitoring and observability servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Solarwinds's toolset — Tools, search_logs, visualize_logs and 2 more — is a fair guide to whether it matches your workflow. It is maintained by jakenuts; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
ToolsThe Tools tool exposed by this server.
search_logsSearch SolarWinds Observability logs with optional filtering - Takes search parameters including filter, time range, and pagination options - Returns formatted log entries with timestamps, hostnames, and messages - Suppo
visualize_logsGenerate a histogram json response for of log events - Formatted for Claude and canvas representations - Configurable time intervals (minute, hour, day) - Supports UTC or local time zones - Customizable query filters and
ResourcesThe Resources tool exposed by this server.
DebuggingSince MCP servers communicate over stdio, debugging can be challenging. The MCP Inspector provides helpful debugging tools:

How to install the MCP Solarwinds MCP server

{
  "mcpServers": {
    "solarwinds": {
      "command": "npx",
      "args": ["-y", "mcp-solarwinds"],
      "env": {
        "SOLARWINDS_API_TOKEN": "your-api-token"
      },
      "autoApprove": ["search_logs", "visualize_logs"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
SOLARWINDS_API_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Solarwinds to Tools.
  • Use MCP Solarwinds to search logs.
  • Use MCP Solarwinds to visualize logs.

Frequently asked questions

It connects MCP Solarwinds to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (Tools, search_logs, visualize_logs, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Solarwinds directly.