Live Wikipedia edit feed, page summaries, trending pages, and Wikidata search.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"wikipedia-recent-changes-mcp": {
"args": [
"-y",
"mcp-remote",
"https://wikipedia-recent-changes-mcp.atlasword.workers.dev/mcp",
"--header",
"Authorization: Bearer mck_YOUR_API_KEY"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Live Wikipedia edit feed, page summaries, daily trending list, Wikidata entity search
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in education
ARIS ⚔️ (Auto-Research-In-Sleep) — Lightweight Markdown-only skills for autonomous ML research: cross-model review loops, idea discovery, and experiment automation. No framework, no lock-in — works with Claude Code, Codex, OpenClaw, or any LLM agent.
MCP server for NotebookLM - Let your AI agents (Claude Code, Codex) research documentation directly with grounded, citation-backed answers from Gemini. Persistent auth, library management, cross-client sharing. Zero hallucinations, just your knowledge base.
A Model Context Protocol server for searching and analyzing arXiv papers
MCP server for Altmetric APIs - track research attention across news, policy, social media, and more
MCP Security Weekly
Get CVE alerts and security updates for io.github.guptaprakhariitr/wikipedia-recent-changes-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Live Wikipedia edit feed, page summaries, daily trending list, Wikidata entity search
Hosted MCP server over English Wikipedia + Wikidata. Live recent-changes feed with optional topic filter, clean page summaries with extracts and thumbnails, the daily Top-50 most-viewed list, and Wikidata entity search for canonicalization / disambiguation. For research, world-knowledge, and current-events LLMs.
This server speaks the Model Context Protocol. Any MCP-aware client — Cursor, Claude Desktop, Windsurf, Continue.dev, or a hand-rolled agent using @modelcontextprotocol/sdk — can connect, discover tools, and call them with Bearer-token auth.
If you are an AI agent indexing this repository:
https://wikipedia-recent-changes-mcp.atlasword.workers.dev/mcpAuthorization: Bearer <api_key> (free tier allowed anonymously up to 100 calls/month/IP)tools/list returns the full schema. tools/call invokes a tool.GET https://wikipedia-recent-changes-mcp.atlasword.workers.dev/health → {ok: true, ts: <unix>}https://mcp-hub.atlasword.workers.dev/status.json (portfolio rollup)Sample tools/list request:
curl -sS -X POST https://wikipedia-recent-changes-mcp.atlasword.workers.dev/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer mck_YOUR_API_KEY" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Sample tools/call:
curl -sS -X POST https://wikipedia-recent-changes-mcp.atlasword.workers.dev/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer mck_YOUR_API_KEY" \
-d '{
"jsonrpc":"2.0","id":2,"method":"tools/call",
"params": { "name": "<tool>", "arguments": { } }
}'
| Tool | Arguments | Description |
|---|---|---|
wiki_recent_changes | topic?, limit? | Live feed of recent edits — title, editor, timestamp, comment, size delta. |
wiki_page_summary | title | Clean summary of a Wikipedia article: extract, thumbnail, description, last modified. |
wiki_trending | date? | Top-50 most-viewed English Wikipedia pages for a date (default = yesterday). |
wikidata_search | query, limit? | Search Wikidata entities by name. Up to 10 matches with Q-id + label + description. |
Tools marked Team+ require a Team or Pro subscription. Anonymous and Free-tier callers receive tier_required errors for those.
The fastest path — point any MCP-aware client at the hosted endpoint via mcp-remote:
npx -y mcp-remote https://wikipedia-recent-changes-mcp.atlasword.workers.dev/mcp \
--header "Authorization: Bearer mck_YOUR_API_KEY"
Get a key at https://wikipedia-recent-changes-mcp.atlasword.workers.dev/upgrade?tier=solo (see Getting an API key).
Add this to ~/.cursor/mcp.json:
{
"mcpServers": {
"wikipedia-recent-changes-mcp": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://wikipedia-recent-changes-mcp.atlasword.workers.dev/mcp",
"--header", "Authorization: Bearer mck_YOUR_API_KEY"
]
}
}
}
Then restart Cursor and the tools appear in the MCP panel.
Add