@insnapsprakhar/wikipedia-recent-changes-mcp
v0.1.0
Published
npx launcher for Wikipedia Recent Changes + Wikidata MCP — hosted on Cloudflare Workers. Live Wikipedia edit-feed for AI agents — every breaking news event lands here within minutes
Maintainers
Readme
@insnapsprakhar/wikipedia-recent-changes-mcp
npx-installable launcher for Wikipedia Recent Changes + Wikidata — a hosted MCP server on Cloudflare Workers.
Live Wikipedia edit-feed for AI agents — every breaking news event lands here within minutes. Plus page summaries, trending, Wikidata entity lookup.
Install / use directly
npx -y @insnapsprakhar/wikipedia-recent-changes-mcpThat's it. The package shells out to mcp-remote and points it at the hosted endpoint:
https://wikipedia-recent-changes-mcp.atlasword.workers.dev/mcpMCP client config
Cursor / Claude Desktop / Cline / Windsurf
{
"mcpServers": {
"wikipedia-recent-changes": {
"command": "npx",
"args": ["-y", "@insnapsprakhar/wikipedia-recent-changes-mcp"]
}
}
}With a paid API key (optional)
The free tier is anonymous (~100 calls/month/IP). For higher limits, grab a key
from https://wikipedia-recent-changes-mcp.atlasword.workers.dev and pass it via env:
{
"mcpServers": {
"wikipedia-recent-changes": {
"command": "npx",
"args": ["-y", "@insnapsprakhar/wikipedia-recent-changes-mcp", "--header", "Authorization:Bearer ${MCP_KEY}"],
"env": { "MCP_KEY": "mck_..." }
}
}
}Direct HTTP (no Node)
curl -sS -X POST https://wikipedia-recent-changes-mcp.atlasword.workers.dev/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Source
- Source repo: https://github.com/guptaprakhariitr/wikipedia-recent-changes-mcp
- All 17 MCPs: https://mcp-hub.atlasword.workers.dev
- License: MIT
