Skip to main content
Glama
paolino

mcp-memory-server

by paolino

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
extensions
{
  "io.modelcontextprotocol/ui": {}
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_memory_usageA

Get system memory usage summary.

Returns total, available, used memory and swap statistics, similar to the free -h command.

list_top_processesC

List top N memory-consuming processes.

list_process_groupsA

List processes grouped by name with aggregated stats.

Useful for seeing total resource usage by process type (e.g., "3 claude processes using 1.6GB total").

find_stale_processesB

Find potentially stale processes based on various criteria.

Useful for finding long-running background processes that may be consuming resources unnecessarily.

kill_processesA

Kill processes by PID with safety checks.

Safety mechanisms:

  • Refuses to kill PID 0 or 1

  • Refuses root-owned processes unless running as root

  • Optional name confirmation to prevent killing wrong process

  • Uses SIGTERM by default, SIGKILL only when explicit

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.8/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a distinct purpose: memory usage overview, top processes, process grouping, stale process detection, and process termination. Even the two listing tools are clearly differentiated by their focus on top consumers versus name-based aggregation, with descriptions reinforcing this.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (list_*, find_*, kill_*). There are no mixed conventions or vague verbs, making the API predictable and easy to navigate.

Tool Count5/5

With 5 tools, the server is well-scoped for its purpose. It provides a comprehensive set for memory monitoring and process management without unnecessary bloat, and each tool earns its place.

Completeness4/5

The tool surface covers the core lifecycle: memory overview, process listing, grouping, stale detection, and killing. A minor gap is the lack of a tool to retrieve detailed information about a single process by PID, but this does not critically impede the server's primary functionality.

Maintenance

ActivityInactive
ResponsivenessNo issues