Agentalmanac: A Catalog of 23 MCP Servers with Paste-Ready JSON Configs
A Redditor built agentalmanac.org, a catalog of 23 MCP servers designed to eliminate the repetitive config setup when adding servers to Claude Desktop. Each server has a detail page with paste-ready JSON config snippets for three runtimes: Claude Desktop, Cursor, and Continue. You pick your runtime, copy the JSON, and you're done.
One notable finding: many of the “official” reference servers in modelcontextprotocol/servers are archived — including GitHub, Slack, Postgres, SQLite, Puppeteer, Sentry, Brave Search, and Google Drive. Yet most catalog sites still list them as current. The author manually routed every archived server to actively maintained alternatives:
- Puppeteer → Microsoft's Playwright
- Slack → Zencoder
- Brave Search → Brave's own first-party server
The author also hosts one server themselves: agentalmanac-time, a time utility (e.g., get_current_time, convert_time) running on a Cloudflare Worker. It's a proof of concept that MCP servers can run on Cloudflare Workers. Drop the snippet into claude_desktop_config.json and it works.
Stack details
- Catalog: Plain HTML/JS on Cloudflare Pages. Single
servers.jsonfetched client-side. No framework, no database, no build step. - Hosted MCP demo: Small Worker using Cloudflare's agents/mcp SDK with a Durable Object for session state. About four hours of work end to end.
- JSON feed available at
/servers.jsonfor building on top.
No signup or login required. If you want a server added, the author asks for a comment on the Reddit thread. They're also curious whether anyone would deploy servers through a hosted platform like this versus running on Railway or Fly.
📖 Read the full source: r/ClaudeAI
👀 See Also

Brain: A Persistent Error Memory System for Claude Code via MCP
Brain is an open-source MCP server that gives Claude Code persistent, cross-project memory for errors and solutions. It captures error context, suggests proven fixes with confidence scores, and builds a weighted synapse network connecting errors, solutions, and code modules across all projects.

Developer shares solution for Claude AI ignoring rules beyond 50-count threshold
A developer reports Claude Code started silently dropping rules once their shared rule set exceeded approximately 50 items, particularly during frontend-heavy tasks. They built a hook that scans prompts and loads only 2-3 relevant rules based on keyword matching.

Lean Context: Claude Code Plugin Converts Verbose Docs to Agent-Optimized Files
A free, open-source Claude Code plugin called Lean Context scans project documentation and removes content AI agents can discover through grepping, keeping only essential non-obvious commands, gotchas, and environment quirks. In a .NET e-commerce project test, it reduced 8 documents totaling 1,263 lines to just 23 lines.

Architect CLI: Open-source tool for orchestrating headless AI coding agents in CI/CD
Architect is an open-source CLI tool designed for autonomous AI coding agents in CI/CD pipelines, featuring the Ralph Loop for test-retry cycles, deterministic guardrails, YAML pipeline definitions, and support for multiple LLMs via LiteLLM.