pbx-mcp is an MCP server that wraps Asterisk (AMI) and FreeSWITCH (ESL) behind one set of MCP tools. Install: npx -y pbx-mcp. It solves the problem of memorizing two command sets when operating two PBX systems, and prevents Agents from accidentally running state-changing commands.
mcp-memory is an MCP server that persists Agent long-term memory as Markdown files conforming to Google's OKF v0.2 spec, with SQLite FTS5 full-text search indexing. Install: git clone then run `python3 setup.py`. It solves the problem of Agents losing all context on every new session, and memory formats being incompatible across different Agent tools.
Phinq is an open-source runtime governance layer for AI agents. It intercepts every tool call and classifies its risk level — reversible operations pass through, irreversible ones (deletions, payments, credential access, bulk operations) pause for human approval. Install: npx @phinq/phinq. It solves the problem of unsupervised agents making irreversible damage with no trustworthy audit trail.
agent-codemode is an open-source CLI/SDK that lets scripts written by Coding Agents call MCP servers you've already authenticated in Claude Code, Cursor, or Windsurf. Install: npm install -g agent-codemode. It solves the problem of agents burning through context on per-step tool calls by batching them into a single script execution (the author's benchmark shows 99.66% token savings).
comfy-mcp is Comfy's official local MCP server that wraps the full comfy-cli feature set into 39 MCP tools. Install: pip install comfy-mcp "comfy-cli>=1.14.0". It solves the problem where agents trying to run image/video generation workflows for you still need you to manually open a terminal, type commands, and verify that the right nodes and models are installed.
claude-scope is a Claude Code plugin that provides SQLite FTS5 full-text search over your session history. Install: claude plugin marketplace add waazy-w/claude-scope. It solves the dilemma of 'index-based tools go stale, grep-based tools rescan hundreds of MB every time' by using byte-offset incremental sync — each search only reads newly appended bytes, so even text you typed a minute ago is already searchable.
Cairn is an incident analysis Copilot that connects to your observability stack, deploy records, and runbooks via MCP tool servers. Ask 'why did checkout latency spike at 3 AM?' and get an evidence-backed root-cause hypothesis. Install: `make install && make up` for a local environment. It solves the problem of SREs manually cross-referencing timelines across multiple systems and digging through runbooks during incidents — and remediation actions require human approval before execution by default.
mcp-anything is a meta-MCP server that indexes 75,000 MCP servers from public registries to your local machine, letting agents discover and call any server through 5 fixed meta-tools (search/describe/list_tools/call_tool/sync). Install: `npx mcp-anything sync && npx mcp-anything serve`. Solves the problem of too many MCP servers to manually configure, each one burning context tokens.
localmem-mcp is a local-first MCP memory server that stores and searches agent memories using SQLite + on-device embedding (fastembed), with zero LLM calls on the recall path. Install: `uvx localmem-mcp` (zero-install) or `pip install localmem-mcp`. Solves the problem of existing memory tools (Mem0, Zep) requiring cloud LLM calls, API keys, and extra infrastructure (vector DB / graph DB) to function.
mcp-guardrail is an open-source MCP security proxy: policy gateway + audit log + secret scanner in one. Install: clone then `pip install -e .`. It addresses the fact that most MCP server setups lack tool-level permission controls and often have secrets hard-coded in config files.
agent-manager is a terminal UI built on top of tmux that tracks the status of multiple AI coding agent sessions at once. Install: brew install yoanwai/tap/agent-manager. It solves the problem of juggling terminal tabs to figure out which agent is stuck and which one is done.
pgbot is a read-only Postgres health-check CLI; run `pgbot mcp` and it becomes an MCP server agents can call directly. Install: `curl -fsSL https://pgbot.dev/install | sh`. It solves the problem of piecing together root causes across multiple monitoring dashboards when a database slows down, while an agent only ever sees fragments of that picture.
Run SDK is Vercel's open-source QuickJS sandbox that lets agent-generated JS/TS call only the host functions you expose. Install: pnpm add run. It solves the dilemma agents face when running dynamic code — either use raw eval, or spin up a full virtual machine.
localagents is an MCP server that lets Claude Code delegate subtasks to a local llama.cpp / vLLM model. Install: git clone + uv tool install -e . + claude mcp add. It solves the compatibility problem where a local model can't plug directly into Claude Code's conversation protocol — KV-cache placement and context window size both trip it up.
proton-safe-mcp is a FastMCP server that lets an agent read, search, and prepare draft attachments via Proton Mail Bridge. Install: git clone + uv sync + uv run proton-safe-mcp setup. It solves the problem that 'letting an agent read email is itself a prompt-injection attack surface' — there is no send tool in the codebase, and a draft only becomes real once it's manually approved from a local terminal.
Sovereign MCP (sovereign-observer-mcp) is a locally-run MCP server that scans and auto-fixes Terraform security misconfigurations while an agent is writing them. Install: claude mcp add sovereign -- uvx sovereign-observer. It solves the problem that AI-generated IaC is insecure by default, and the mistake usually isn't caught until a PR or production.
read4all is an MCP server that converts PDFs, Office files, images, and web documents into Markdown plus images, preferring MinerU's cloud engine and falling back to local libraries when no API key is set. Install: uvx read4all. It solves the problem that an agent reading an attachment either loses all layout structure or needs a hand-built conversion pipeline.
mcp-spend-guard is an open-source stdio proxy for MCP that fills the gap MCP has no built-in rate limiting for: spend caps, rate limits, a circuit breaker, and a kill switch. Install: `pipx install .`. It addresses the fact that a looping or prompt-injected agent can hammer a paid tool with nothing to stop it.
upnote-mcp is an open-source MCP server that lets Claude read and create UpNote notes. Install: clone the repo, then `npm install`. It solves the problem of a note app with no official automation API where you also don't want your notes touching the cloud.
reverify is an open-source MCP server plus CLI that puts a pure-Python deterministic reverse-engineering toolkit (disassembly, CPU emulation, pattern scanning) in the judge's seat for whatever an AI claims about a binary. Install: `pip install reverify`. It addresses the problem of an agent stating guesses about a binary as if they were fact, with no way for you to tell which is which.
KRU is a local-first MCP credential manager that lets agents like Codex, Claude Code, and Cursor log in, connect, and call APIs using saved passwords, API keys, SSH keys, and TOTP codes — without the plaintext secret coming back into the conversation. Install: download the portable build from GitHub Releases. It addresses the problem of an agent stalling on a login page or SSH password prompt, leaving you to either take over manually or paste the secret straight into the chat.