
Systemd-Coredump
Provides access to systemd-coredump functionality for managing and analyzing Linux system core dumps. Lets you list, inspect, extract core dumps and generate stack traces using GDB.
Provides a bridge to systemd-coredump functionality for accessing, managing, and analyzing system core dumps in Linux environments, including listing available coredumps, retrieving information, extracting dumps, and generating stack traces using GDB.
What it does
- List available system coredumps
- Get detailed coredump information
- Extract coredump files to disk
- Generate stack traces with GDB
- Configure coredump settings
- Enable/disable coredump generation
Best for
About Systemd-Coredump
Systemd-Coredump is a community-built MCP server published by signal-slot that provides AI assistants with tools and capabilities via the Model Context Protocol. Systemd-Coredump: Access, manage, and analyze Linux core dumps with tools for listing, retrieving, and generating stack It is categorized under ai ml, developer tools. This server exposes 6 tools that AI clients can invoke during conversations and coding sessions.
How to install
You can install Systemd-Coredump in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
License
Systemd-Coredump is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Tools (6)
List available coredumps in the system
Get detailed information about a specific coredump
Extract a coredump to a file
Get the current core dump configuration of the system
Enable or disable core dump generation
systemd-coredump MCP Server
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.
Features
- 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
Prerequisites
- Node.js 18+ and npm
- systemd-coredump must be installed and configured on the system
coredumpctlcommand-line utility must be available
Installation
From npm (recommended)
Global Installation
npm install -g @taskjp/server-systemd-coredump
Local Installation
npm install @taskjp/server-systemd-coredump
From Source
- Clone the repository or download the source code
- Install dependencies:
cd systemd-coredump-server
npm install
- Build the server:
npm run build
Configuration
Add the server to your MCP settings configuration file:
If installed from npm globally:
"systemd-coredump": {
"command": "systemd-coredump-server",
"args": [],
"disabled": false,
"autoApprove": []
}
If installed from npm locally:
"systemd-coredump": {
"command": "node",
"args": ["node_modules/@taskjp/server-systemd-coredump/build/index.js"],
"disabled": false,
"autoApprove": []
}
If installed from source:
"systemd-coredump": {
"command": "node",
"args": ["/path/to/systemd-coredump-server/build/index.js"],
"disabled": false,
"autoApprove": []
}
Usage
Available Tools
The server provides the following tools:
-
list_coredumps: List all available coredumps in the system
{ "name": "list_coredumps" } -
get_coredump_info: Get detailed information about a specific coredump
{ "name": "get_coredump_info", "arguments": { "id": "2023-04-20 12:34:56-12345" } } -
extract_coredump: Extract a coredump to a file
{ "name": "extract_coredump", "arguments": { "id": "2023-04-20 12:34:56-12345", "outputPath": "/path/to/output/core.dump" } } -
remove_coredump: Remove a coredump from the system
{ "name": "remove_coredump", "arguments": { "id": "2023-04-20 12:34:56-12345" } } -
get_coredump_config: Get the current core dump configuration of the system
{ "name": "get_coredump_config" }This tool returns information about the current core dump configuration, including:
- Whether core dumps are enabled
- The current core pattern
- The core size limit
- Whether systemd is handling the core dumps
-
set_coredump_enabled: Enable or disable core dump generation
{ "name": "set_coredump_enabled", "arguments": { "enabled": true } }Setting
enabledtotruewill enable core dumps, whilefalsewill disable them. Note: This changes the ulimit settings for the current shell. For permanent system-wide changes, root privileges and modification of system configuration files would be required. -
get_stacktrace: Get stack trace from a coredump using GDB
{ "name": "get_stacktrace", "arguments": { "id": "2023-04-20 12:34:56-12345" } }This tool uses GDB to extract a formatted stack trace from the coredump. Note: Requires the GDB debugger to be installed on the system.
Available Resources
The server exposes two types of resources:
-
Coredump Information
- URI format:
coredump:///<id> - Returns JSON with detailed coredump information
- URI format:
-
Stack Traces
- URI format:
stacktrace:///<id> - Returns a formatted stack trace from the coredump
- URI format:
Where <id> is the unique identifier for a coredump in the format: <timestamp>-<pid>.
For example:
coredump:///2023-04-20 12:34:56-12345
stacktrace:///2023-04-20 12:34:56-12345
Note on Permissions
Some operations may require elevated privileges, especially when extracting or removing coredumps. Ensure the user running the MCP server has appropriate permissions to access system coredumps.
License
MIT
Alternatives
Related Skills
Browse all skillsUI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.
Guide for building TypeScript CLIs with Bun. Use when creating command-line tools, adding subcommands to existing CLIs, or building developer tooling. Covers argument parsing, subcommand patterns, output formatting, and distribution.
Use when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.
Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.
Integrate Vercel AI SDK applications with You.com tools (web search, AI agent, content extraction). Use when developer mentions AI SDK, Vercel AI SDK, generateText, streamText, or You.com integration with AI SDK.
Use when building MCP servers or clients that connect AI systems with external tools and data sources. Invoke for MCP protocol compliance, TypeScript/Python SDKs, resource providers, tool functions.