MCP Medium Accelerator
A Claude Desktop MCP server that extracts and summarizes Medium articles from specified URLs, with support for Italian language summaries and local storage for future reference.
README
mcp-medium-accelerator
Questo MCP server permette a LLM come ad esempio Claude Desktop, dando in input una URL tipo "https://medium.com/tag/frontend/archive" di estrapolare tutti i link degli ultimi articoli. Creare un riassunto, anche in italiano degli articoli che interessano all'utente. Salvare il riassunto in una memoria locale da poter interpellare in qualsiasi momento.
Requisiti
Assicurati di avere installato:
- Python ≥ 3.10
- Claude Desktop
Installazione locale
- Clona il repository:
git clone https://github.com/crtdaniele/mcp-medium-accelerator
cd mcp-medium-accelerator
- Crea e attiva un ambiente virtuale:
python -m venv venv
source venv/bin/activate
- Installa le dipendenze:
pip install -r requirements.txt
- (Facoltativo) Aggiorna il file requirements.txt dopo aver aggiunto nuove librerie:
pip freeze > requirements.txt
Avvio del server MCP
Per eseguire il server MCP in modalità sviluppo con hot reload:
mcp dev main.py
Per eseguire il server in modalità normale:
mcp run main.py
Tool
Tool disponibili:
- extract_article_links:
Estrae i link degli articoli da un URL di archivio Medium. Restituisce una lista di link agli articoli.
- extract_article_text:
Estrae il contenuto di un articolo da un URL di Medium. Restituisce il contenuto dell’articolo. Chiede all’utente se desidera salvare il riassunto tramite save_summary.
- save_summary:
Salva un riassunto di un articolo con titolo, URL e tag. Restituisce un messaggio di stato.
- list_summaries:
Elenca tutti i riassunti salvati. Restituisce una lista di riassunti.
Installazione su Claude Desktop
mcp install main.py
Oppure configura manualmente il file settings.json (Claude Desktop > Settings > Advanced):
{
"mcpServers": {
"mcp-medium-accelerator": {
"command": "/opt/homebrew/bin/uv",
"args": [
"run",
"--with",
"bs4",
"--with",
"httpx",
"--with",
"datetime",
"--with",
"tinydb",
"--with",
"mcp[cli]",
"mcp",
"run",
"/your-local-path/main.py"
]
}
}
}
Licenza
MIT License. © 2025 Daniele Carta
Contribuire
Pull request benvenute!
Segnala bug o richiedi funzionalità aprendo una issue.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.