
Product
Socket MCP Adds Org Alerts, Threat Feed Review, and Package Inspection
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.
@ams-dev/process-manager
Advanced tools
MCP server for managing and monitoring development processes
A Model Context Protocol (MCP) server that enables AI assistants like Claude Code to manage and monitor development processes such as NX serves, npm scripts, and other long-running development tasks.
# Global installation
npm install -g @ams-dev/process-manager
# Or use with npx
npx @ams-dev/process-manager
Add to your Claude Code MCP configuration (~/.config/claude/mcp.json):
{
"mcpServers": {
"process-manager": {
"command": "npx",
"args": ["-y", "@ams-dev/process-manager"]
}
}
}
start_processStart a new development process.
Input:
{
command: string; // e.g., "pnpm nx serve admin"
cwd?: string; // Working directory
env?: Record<string, string>;
label?: string; // Human-readable label
autoRestart?: boolean; // Restart on failure
watchPatterns?: string[]; // Patterns to monitor
}
Example:
{
"command": "pnpm nx serve admin",
"cwd": "/Users/dev/myproject",
"label": "Admin Frontend",
"autoRestart": true,
"watchPatterns": ["ERROR", "TS\\d+", "Failed to compile"]
}
stop_processStop a running process gracefully.
Input:
{
processId: string;
timeout?: number; // Milliseconds before SIGKILL (default: 5000)
}
restart_processRestart a process.
Input:
{
processId: string;
}
get_process_logsRetrieve logs from a process.
Input:
{
processId: string;
filter?: string; // Regex pattern
since?: number; // Unix timestamp
lines?: number; // Number of recent lines
follow?: boolean; // Stream logs (not yet implemented)
}
list_processesList all managed processes.
Input:
{
status?: 'running' | 'stopped' | 'failed' | 'all';
}
send_inputSend input to a running process.
Input:
{
processId: string;
input: string;
}
Claude: I'll start the admin frontend for you
- Executes: start_process with "pnpm nx serve admin"
- Returns: Process ID and status
- Monitors: Compile errors with watchPatterns
Developer: Start the admin and API services
Claude:
- Starts: Admin frontend (proc-1)
- Starts: API backend (proc-2)
- Reports: Both running, ports ready
- Alerts: If any compile errors occur
Developer: Check the logs for errors
Claude:
- Gets: Recent logs with get_process_logs
- Filters: For "ERROR" pattern
- Reports: Specific error messages with context
# Install dependencies
pnpm install
# Build
pnpm build
# Watch mode
pnpm dev
# Run tests
pnpm test
MIT © mastoica
FAQs
MCP server for managing and monitoring development processes
We found that @ams-dev/process-manager demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.

Research
More than 140 Mastra npm packages were compromised in a supply chain attack that used a typosquatted dependency to deliver a cross-platform infostealer during installation.