AIttache: A Read-Only MCP Server That Can't Nuke Your Prod
The author of AIttache calls it the antidote to MCP servers that will "happily let your LLM rm -rf something important while you're making coffee." Instead of agentic autonomy, AIttache is physically incapable of doing anything beyond requesting info from the connectors you provide. It's a read-only bridge.
Key Design Decisions
- 25+ read-only connectors: your terminal, your servers, the weather, your Steam library — the LLM gets to look, not touch.
- Zero write operations: no
rm, no config changes, no executing commands that mutate state. The server refuses anything that isn't a GET-style request. - Context, not autonomy: the useful part of having an LLM in infrastructure work is the context. This spares you from copy-pasting 300 lines of logs into a chat window.
Philosophy
The creator explicitly positions AIttache as a "sparring partner with situational awareness, not a chatbot that nukes prod at 8AM on a Monday because it was pretty sure it knew what it was doing." The core argument: "what could possibly go wrong" is not a viable deployment strategy.
Who It's For
Developers who want LLM-assisted troubleshooting (log analysis, error context, system inspection) without granting write access to their infrastructure.
📖 Read the full source: r/ClaudeAI
👀 See Also

Destiny: Claude Code Plugin for Deterministic Fortune Telling Using Classical East Asian Astrology
Destiny is a Claude Code plugin that computes your eight-character birth chart, today's day pillar, and I-Ching hexagram deterministically (Python), then uses Claude to generate prose readings — no LLM-hallucinated horoscopes.

Kvaser: An Open-Source Local-First AI Orchestrator with Sub-Agent Routing and Wolfram Integration
Kvaser is a Man-in-the-Middle MCP proxy that orchestrates sub-agents with smart tool whitelisting, zero-embedding RAG via Kiwix, and Wolfram Engine integration for symbolic math. Built with Qwen 3.6 35B and sub-agent routing to different models/machines.

Sense: Go SDK for LLM-powered test assertions and structured text extraction
Sense is a Go SDK that uses Claude for two main functions: evaluating non-deterministic output in tests with plain English assertions, and extracting typed structs from unstructured text through reflection and forced tool_use.

/compress-architecture: An Agent Skill to Prune Over-Engineering
A new agent skill called /compress-architecture audits codebases for speculative layers, pass-through modules, and duplicate concepts while protecting real domain boundaries and public APIs.