Server MCP Server

A Model Context Protocol (MCP) server for systemd-coredump

Local serverstdio

What is the Server MCP server?

A Model Context Protocol (MCP) server for systemd-coredump. The server mcp server wraps that behind the Model Context Protocol, so an assistant can use it rather than through you.

What it actually does

A Model Context Protocol (MCP) server for interacting with systemd-coredump functionality. This enables MCP-capable applications to access, manage, and analyze system core dumps.

  • List all available coredumps in the system
  • Get detailed information about specific coredumps
  • Extract coredump files to a specified location
  • Remove coredumps from the system

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at @taskjp/server-systemd-coredump on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Configuration

  • Node.js 18+ and npm - systemd-coredump must be installed and configured on the system - coredumpctl command-line utility must be available

When to reach for it

Plenty of developer tooling 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. It is maintained by taskjp; 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.

Caveats

  • 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.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the server mcp server does with a few real requests.

How to install the Server MCP server

{
  "mcpServers": {
    "systemd-coredump": {
      "command": "npx",
      "args": ["-y", "@taskjp/server-systemd-coredump"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js 18+ and npm - systemd-coredump must be installed and configured on the system - coredumpctl command-line utility must be available

Frequently asked questions

It connects Server to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with Server directly.