Summarize URLs, repurpose content, daily news digests, find competitors. Cost telemetry built in.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A production-grade Model Context Protocol server in Python β four LLM-callable tools, two transports, deployed two different ways.
| URL | |
|---|---|
| Source | https://github.com/wzltmp/mcp-automations |
| Playground (browser demo) | https://mcp-automations-5vgea2ynuyrvbzkcxm6yoh.streamlit.app/ |
| MCP HTTP server | https://mcp-automations.fly.dev/mcp |
Most "AI engineer" portfolio projects are applications (a RAG chatbot, an agent that does research). This project is the layer underneath β the typed tools an LLM can call and the transport plumbing that exposes them. MCP is the emerging standard for LLM tool use (~97M monthly SDK downloads as of early 2026); building one β not just consuming one β is the rare skill.
For a deeper look at the design decisions β why two transports, how cost telemetry works, the exception hierarchy, what I'd do differently β see WRITEUP.md.
| Tool | Model | What it does |
|---|---|---|
summarize_url(url, n_bullets) | Haiku 4.5 | Fetch a page, extract clean text with trafilatura, return an N-bullet summary |
repurpose_content(text, format) | Sonnet 4.6 | Turn long-form text into a twitter thread, linkedin post, or newsletter |
daily_digest(topic, n_results) | Haiku 4.5 | Tavily news search + ~200-word digest with citations |
find_competitors(domain, n) | Sonnet 4.6 | Identify N plausible competitors for a company by domain |
Plus one MCP resource (automations://catalog) and one MCP prompt (daily_brief) β using all three MCP primitives, not just tools.
Every tool returns a typed Pydantic model with per-call token usage and dollar cost attached. Cheap tasks route to Haiku 4.5 ($1/M in, $5/M out), writing-heavy tasks to Sonnet 4.6 ($3/M in, $15/M out).
Add one of these to ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%/Claude/claude_desktop_config.json (Windows), then restart Claude Desktop.
Option A β local stdio (no network, runs the server as a subprocess):
Option B β remote HTTP (talks to the live Fly server, no local setup):
Then ask Claude something like "summarize https://www.paulgraham.com/greatwork.html in 3 bullets" β it'll call summarize_url automatically.
Requires Python 3.13. Needs ANTHROPIC_API_KEY and TAVILY_API_KEY in .env (see .env.example).
The same Python callables back all three entry points. The transport is just a wrapper.
models.Cost) β token counts and USD attached so a client doesn't have to re-derive it.UpstreamAPIError, EmptyLLMResponseError, ExtractionError each route differently in logs and the Streamlit UI.MCP_TRANSPORT=stdio|http env switch; HTTP host/port from env so the same image runs on Fly..github/workflows/ci.yml).MCP is transport-agnostic, so one server serves both a local Claude Desktop user (stdio subprocess) and a hosted multi-tenant deployment (HTTPS). It also exposes three primitives that most demos skip:
automations://catalog returns the tool list as JSON)daily_brief chains daily_digest + repurpose_content)Using all three is a signal of reading the spec, not just a quickstart.
β
Code on GitHub, CI green
β
Public playground on Streamlit Cloud
β
Public MCP HTTP server on Fly.io
β
Cost protection (per-session caps + monthly Anthropic cap)
β
Real test coverage (23 offline unit tests)
β
Listed on the Official MCP Registry as io.github.wzltmp/mcp-automations
β
Long-form writeup of design decisions
β
Consumed by another agent, not just demoed β langgraph-research-agent's read_node calls this server's summarize_url tool over HTTP (with local fallback if the call fails)
π§ Demo gif + screenshots (planned)
π§ n8n self-host via docker-compose (planned)
MIT.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mcp-automations)<a href="https://allmcps.com/mcp/mcp-automations"><img src="https://allmcps.com/api/badge/mcp-automations?style=directory" alt="MCP Automations on AllMCPs" /></a>