---
name: MCP Operations
slug: mcp-operations
category: DevOps
description: MCP Operations helps maintain the local MCP server and host integration for this project. Use it to set up host config, check tool connectivity, adjust tool domains, and manage safety flags.
github: "https://github.com/hoangsonww/Claude-Code-Agent-Monitor/tree/master/.claude/skills/mcp-operations"
language: TypeScript
stars: 933
forks: 210
install: "npx degit https://github.com/hoangsonww/Claude-Code-Agent-Monitor/tree/master/.claude/skills/mcp-operations ~/.claude/skills/mcp-operations"
installs_to: ~/.claude/skills/mcp-operations
source_path: .claude/skills/mcp-operations/SKILL.md
collection_size: 20
category_size: 798
collection_url: "https://dirskills.com/collections/hoangsonww/Claude-Code-Agent-Monitor"
added: 2026-08-22T05:20:22.941Z
last_synced: 2026-08-22T05:20:22.941Z
canonical_url: "https://dirskills.com/skills/mcp-operations"
---

# MCP Operations

MCP Operations helps maintain the local MCP server and host integration for this project. Use it to set up host config, check tool connectivity, adjust tool domains, and manage safety flags.

**Install:**

```bash
npx degit https://github.com/hoangsonww/Claude-Code-Agent-Monitor/tree/master/.claude/skills/mcp-operations ~/.claude/skills/mcp-operations
```

## README

# MCP Operations

Use this skill whenever work touches `mcp/` behavior or MCP host integration.

## Core workflow
- Confirm dashboard API is running (`/api/health`).
- Confirm MCP server build status.
- Validate env flags for mutation/destructive modes.
- Verify host configuration path and command.

## Safe operations policy
- Default to read-only mode (`MCP_DASHBOARD_ALLOW_MUTATIONS=false`).
- Enable mutations only for explicit admin tasks.
- Enable destructive mode only transiently and require explicit confirmation token.

## Required verification for code changes
- `npm run mcp:typecheck`
- `npm run test:mcp`
- `npm run mcp:build`

## Catalog invariant
- Add tools only through `mcp/src/tools/domains/` and `registerAllTools`.
- Protocol transports and REPL must use the same declarations and schemas.
- Update `.agents/skills/mcp-maintainer/references/tool-domain-map.md` when a domain changes.

## References
- Host config examples: `references/host-config.md`
- Operations runbook: `references/runbook.md`
