Privacy-First MCP Server Directory Launches with Documented Data Handling Policies

A developer has created a privacy-focused directory for MCP (Model Context Protocol) servers that addresses concerns about data transparency. The directory, available at toolora.dev/mcp-hub, requires every listed server to have a documented data handling policy.
Key Details from the Source
The directory provides specific information for each MCP server:
- Local vs hosted classification
- What data each tool call transmits
- The operator/repository link
- Whether the server requires an account
The creator built this directory out of frustration with the Anthropic registry, which doesn't specify what data each server processes or where it goes.
Privacy Verification Method
The source includes a practical browser test to verify privacy claims for browser-based tools:
- Open DevTools (F12)
- Go to the Network tab
- Use the tool
- Watch if any file upload request fires
If no requests go out during tool usage, your data stayed local.
Toolora MCP Server Details
The free Toolora MCP server itself includes 17 tools and requires no account. The creator is available to answer questions about the privacy model or any of the listed servers.
📖 Read the full source: r/ClaudeAI
👀 See Also

MCP Context Bloat: Real Costs and a Practical Fix for Claude Code Users
Running 9 MCP servers in Claude Code leads to 38k token cold starts, ~$700/month in tool definition overhead, and degraded model performance. A gateway pattern with BM25 ranking cuts context to 4k.

Root Cause of Claude Code VS Code Extension Session Title Corruption Identified
A developer has identified the architectural root cause for session title corruption in Claude Code's VS Code extension, affecting 20+ GitHub issues. The problem stems from the extension reading titles via a raw string search in session files, leading to three failure modes.

Claude Code v2.1.141: New Environment Variables, Hooks Enhancement, and Bug Fixes
Anthropic released Claude Code v2.1.141 with new environment variables (CLAUDE_CODE_PLUGIN_PREFER_HTTPS, ANTHROPIC_WORKSPACE_ID), terminalSequence field for hooks, agent listing by cwd, and over 20 bug fixes.

Parallel Coding Agents with tmux and Markdown Specs
Manuel Schipper describes a system for running 4-8 parallel coding agents using tmux, Markdown files, bash aliases, and six slash commands. The setup uses Feature Design (FD) Markdown specs tracked through an 8-stage lifecycle.