Skip to content
All tags

#mcp-server

17 posts

AI Agent GitHub Digest — 2026-08-30

Google's own ChromeDevTools/chrome-devtools-mcp (50k stars) lets coding agents drive a real Chrome instance for performance profiling and debugging; abhigyanpatwari/GitNexus replaces 'guessing at code by reading it' with a pure browser-side knowledge graph; mksglu/context-mode targets coding agents' context-window waste; google/skills is Google's own official Agent Skills package library; livekit/agents keeps shipping actively for voice agents. On the framework side, pydantic-ai v2.36.0 adds `@durable_operation`, opening a pluggable slot for third-party durable-execution engines.

daily AI Tool of the Day

Tool Pick | proton-safe-mcp — Lets an Agent Read and Draft Email, But Never Reach the Send Button

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.

daily AI Tool of the Day

Tool Pick | localagents — Offload Claude Code's Grunt Work to Your Own GPU

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.

AI Agent GitHub Digest — 2026-08-27

deepseek-ai/deepseek-harness (dsh) uses a Cordis plugin architecture to make models, tools, sandboxes, and memory all swappable components, hitting nearly 200k stars a week after its developer preview launch; PrimeIntellect-ai/prime-agent runs long-lived research coding tasks on a Recursive Language Model architecture, surviving terminal disconnects via a persistent IPython session; liqiwa/mcp-radar automates this very kind of digest by scanning GitHub daily for newly ranked MCP servers. On the framework side, Mastra 1.61.0 adds a crash-resilient background task queue, and ComposioHQ/composio 0.17.0 extends SSRF protection to tool-execution downloads and S3 uploads.

daily AI Tool of the Day

Tool Pick | pgbot — Read-Only Postgres Access for AI Agents to Instantly Spot What's Wrong

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.

daily AI Tool of the Day

Tool Pick | mcp-guardrail — Add an Approval and Audit Layer to Every MCP Tool Call

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.

AI Agent GitHub Digest — 2026-08-24

duty1g/x64dbg-mcp-server wraps a reverse engineering debugger as MCP tools, hitting 563 stars in two days; Cripacx/mediagen bakes EU AI Act content marking into an image generation MCP server; QwenLM/qwen-code v0.22.0 publishes full SWE-bench Verified test trajectories with a 77.08% pass rate; open-gitagent/gitagent rewrites its core engine in Rust with agent state living entirely inside a git repo. On the framework side, GitHub's official MCP Server v1.10.0 is a security spring-cleaning — a typo in `--tools` now crashes the server on startup.

daily AI Tool of the Day

Tool Pick | localmem-mcp — Agent Memory Without LLM Calls or Cloud Services

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.

AI Agent GitHub Digest — 2026-08-23

CopilotKit/OpenBot ships an AG-UI-based 'AI coworker' framework where each agent gets its own computer, hitting 2,289 stars in a week; Bruno's official MCP server (usebruno/bruno-mcp) arrives two months after the community version (Ostico/bruno-mcp-studio); the browser-use team spins off a macOS Harness project that gives LLMs six accessibility primitives to control a Mac directly; opencode, now under Anomaly, has ~199K stars — surpassing Anthropic's Claude Code at ~142K. On the framework side, the MCP TypeScript SDK v2 splits the monolith into 8 sub-packages and follows the protocol's stateless redesign, dropping the session handshake entirely.

daily AI Tool of the Day

Tool Pick | mcp-anything — One MCP Server to Search All 75,000 MCP Servers

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.

AI Agent GitHub Digest — 2026-08-22

HKUDS/nanobot rode its v0.3.0 'The Agency Release' to 47K stars in 7 months as a self-hostable personal agent runtime; genspark-ai/genoffice hit 3,400 stars in 3 weeks with an open-source AI office suite for native file formats; NVIDIA published labs-OO-Agents (NOOA), collapsing agent state into a single Python class; repo-context-mcp is an MCP server that helps coding agents understand repos without stuffing the entire codebase into the prompt. Framework-wise, Mastra 1.60.0 adds durable execution and Cloudflare Sandbox; pydantic-ai v2.33.0 has a breaking change from the anthropic SDK's switch to httpx2.

daily AI Tool of the Day

Tool Pick | comfy-mcp — Comfy's Official MCP Server That Lets Agents Run ComfyUI on Your Machine

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.

AI Agent GitHub Digest — 2026-08-18

headroom compresses tool output, logs, and RAG chunks locally before sending them to the LLM, reaching 66K stars in 7 months. agentmemory gives Claude Code, Cursor, Codex CLI and a dozen other coding agents a shared cross-session memory store, hitting 27K stars in half a year. Andrew Ng's team releases OpenWorker, a desktop agent targeting knowledge workers beyond engineers. NVIDIA's labs-OO-Agents reimagines agent abstractions with object-oriented design. Mastra 1.59.0 renames CostGuardProcessor to TokenCostControl (breaking). browser-use 0.13.8 adds first-party OpenClaw skill support.

AI Agent GitHub Digest — 2026-08-17

forge adds a reliability middleware layer for tool-calling on self-hosted LLMs, proxying opencode/aider/Claude Code with zero code changes; repo-context-mcp provides token-budgeted repo context packaging via MCP, integrated into PR CI within 5 days of launch; DeepSeek's official harness dsh spawned at least 5 independent community desktop wrappers in one week, totaling nearly 1,500 stars; Microsoft Research's browser agent framework Webwright uses Skill Factory to distill solved tasks into replayable scripts without model calls, boosting reuse accuracy by 15 percentage points on WebArena; Mastra 1.59.0 renames CostGuardProcessor to TokenCostControl (breaking); Pydantic AI v2.30.0 patches a DNS rebinding security vulnerability in its local web chat interface.

daily AI Tool of the Day

Tool Pick | mcp-memory — Long-Term Agent Memory Using Google's OKF Standard

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.

daily AI Tool of the Day

Tool Pick|pbx-mcp — Let Your Agent Query Asterisk and FreeSWITCH with One Toolset

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.

How Claude Code connects to external tools: MCP scopes, transports, and auth

Claude Code connects to external tools via MCP (Model Context Protocol), with manual configuration split across three scopes: team-shared .mcp.json, personal local/user entries in ~/.claude.json, and enterprise managed config — not settings.json. This post covers claude mcp add/login flows, the transport landscape (SSE is deprecated), and tool search lazy loading.