Skip to main content

10+ plug-and-play MCP servers for Claude — Hacker News, Wikipedia, Weather, GitHub, Reddit, and more. One install, zero hassle.

Project description

mcp-everything

18 plug-and-play MCP servers for Claude — one install, zero hassle.

PyPI version Python 3.10+ License: MIT PRs Welcome


mcp-everything is a single Python package that ships real, working MCP servers — not just a list of links. Install once, run the setup wizard, restart Claude Desktop, and you're done.

pip install mcp-everything
mcp-everything setup

That's it. Claude can now browse Hacker News, search Wikipedia, look up weather, pull GitHub issues, search Reddit, fetch research papers, and more — all without leaving the conversation.


Servers

Server Tools API Key? What you can ask Claude
Hacker News 4 ✅ None "What's trending on HN today?", "Search HN for posts about Rust"
Wikipedia 4 ✅ None "Summarise the Wikipedia article on black holes"
ArXiv 3 ✅ None "Find recent papers on LLM reasoning"
Weather 2 ✅ None "What's the weather in Tokyo?", "7-day forecast for London"
Reddit 4 ✅ None "What are the hot posts on r/MachineLearning?"
Pokédex 3 ✅ None "What are Charizard's stats?", "What beats Dragon types?"
Crypto 4 ✅ None "What's Bitcoin's price?", "What crypto is trending today?"
Countries 3 ✅ None "Tell me about Japan", "Compare Germany and France"
Books 4 ✅ None "Find books by Ursula Le Guin", "What's trending on Open Library?"
Recipes 4 ✅ None "Give me a random recipe", "Find pasta recipes"
Dictionary 2 ✅ None "Define 'ephemeral'", "Synonyms for 'happy'"
Translate 2 ✅ None "Translate 'good morning' into Japanese"
Public Holidays 3 ✅ None "What's the next UK public holiday?"
GitHub 5 🔑 Free token "Search GitHub for FastMCP examples"
News 3 🔑 Free tier "Top tech news today", "Search news for AI regulation"
NASA 3 🔑 Free (or DEMO_KEY) "Show me today's Astronomy Picture of the Day", "Any asteroids near Earth?"
Movies & TV 4 🔑 Free (TMDB) "What movies are trending?", "Top rated TV shows of all time"
YouTube 3 🔑 Free (Google) "Search YouTube for Python tutorials", "What's trending in the US?"

13 of 18 servers work with zero API keys. mcp-everything setup will only ask for keys when you actually enable a server that needs one.


Quick Start

1. Install

pip install mcp-everything

2. Run the setup wizard

mcp-everything setup

The wizard will:

  • Show you all available servers in a nice table
  • Let you pick which ones to enable (all, free, or 1,2,5)
  • Prompt for API keys only for servers you enable that need them
  • Auto-detect your Claude Desktop config path (macOS / Windows / Linux)
  • Write the config and tell you to restart Claude

3. Restart Claude Desktop

That's it. You'll see your new MCP servers connected in Claude.


Manual Install (without the wizard)

If you'd rather configure manually, add servers to your claude_desktop_config.json:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "hackernews": {
      "command": "python",
      "args": ["-m", "mcp_everything.servers.hackernews"]
    },
    "wikipedia": {
      "command": "python",
      "args": ["-m", "mcp_everything.servers.wikipedia"]
    },
    "weather": {
      "command": "python",
      "args": ["-m", "mcp_everything.servers.weather"]
    },
    "github": {
      "command": "python",
      "args": ["-m", "mcp_everything.servers.github"],
      "env": {
        "GITHUB_TOKEN": "your_token_here"
      }
    }
  }
}

CLI Reference

mcp-everything setup          # interactive setup wizard
mcp-everything list           # show all available servers
mcp-everything add <server>   # add a single server (e.g. mcp-everything add hackernews)
mcp-everything remove <server># remove a server
mcp-everything status         # show which servers are currently active

Server Details

Hacker News

No API key needed. Uses the official HN Firebase API + Algolia search.

Tool Description
hn_top_stories Get current top stories (up to 30)
hn_search Full-text search via Algolia
hn_get_comments Get top comments for any story ID
hn_ask_hn Get current "Ask HN" posts

Wikipedia

No API key needed. Uses the Wikipedia REST API.

Tool Description
wikipedia_search Search for articles
wikipedia_summary Get concise article summary
wikipedia_random Get a random article
wikipedia_on_this_day Historical events for any date

ArXiv

No API key needed. Uses the ArXiv public API.

Tool Description
arxiv_search Search papers by keyword + optional category
arxiv_recent Latest papers in a category (e.g. cs.AI)
arxiv_get_paper Full metadata for a paper ID or URL

Weather

No API key needed. Uses Open-Meteo — free, no registration, no rate limits.

Tool Description
weather_current Current conditions for any city
weather_forecast 1–14 day forecast

Reddit

No API key needed. Uses Reddit's public JSON endpoints.

Tool Description
reddit_hot Hot posts in any subreddit
reddit_search Search across Reddit
reddit_top Top posts by time period
reddit_comments Read top comments from a post

Pokédex

No API key needed. Uses PokéAPI.

Tool Description
pokedex_get Pokémon stats by name or number
pokedex_move Move details (power, accuracy, PP)
pokedex_type_matchup Type effectiveness chart

GitHub

Free API token from github.com/settings/tokens. Read-only public access is enough. Without a token, GitHub allows 60 unauthenticated requests/hour (still works for light use).

Tool Description
github_search_repos Search repositories by keyword
github_get_repo Full repo metadata
github_list_issues Open/closed issues for any repo
github_search_code Search code across GitHub
github_trending Top-starred repos, optionally by language

News (NewsAPI)

Free API key from newsapi.org/register. Free tier: 100 requests/day, developer use only.

Tool Description
news_headlines Top headlines by country + category
news_search Search news articles
news_sources List available news sources

Adding a New Server (Contributing)

Each server is a self-contained Python file using FastMCP:

# mcp_everything/servers/myserver.py
from mcp.server.fastmcp import FastMCP
import httpx

mcp = FastMCP("myserver")

@mcp.tool()
async def my_tool(query: str) -> str:
    """Description Claude will see. Args are auto-documented.

    Args:
        query: What to search for
    """
    # your implementation
    return "result"

if __name__ == "__main__":
    mcp.run()

Then add an entry to the SERVERS list in mcp_everything/config.py and open a PR. That's genuinely all it takes — we'd love more servers!

See CONTRIBUTING.md for full guidelines.


Roadmap

  • Spotify — now playing, search, control playback
  • YouTube — search videos, fetch transcripts
  • Wolfram Alpha — math, science, data queries
  • Jira / Linear — issue tracking
  • Slack — search messages (via MCP)
  • Single-file installer script (no Python required)
  • Auto-update via mcp-everything update

Have a server you'd love to see? Open an issue.


Requirements


License

MIT — do whatever you want with it. A ⭐ star is always appreciated.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_everything-0.2.0.tar.gz (35.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_everything-0.2.0-py3-none-any.whl (43.4 kB view details)

Uploaded Python 3

File details

Details for the file mcp_everything-0.2.0.tar.gz.

File metadata

  • Download URL: mcp_everything-0.2.0.tar.gz
  • Upload date:
  • Size: 35.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for mcp_everything-0.2.0.tar.gz
Algorithm Hash digest
SHA256 5321e1be8da0eed308027f863d418e9e19a794bd5840ea4ea962ff2d01da051b
MD5 d9111ca646309bcb0c14305d4b579d2d
BLAKE2b-256 0ab4c4a529876317e8b76981243c4ca9e8cd622437142701a731194876b08344

See more details on using hashes here.

File details

Details for the file mcp_everything-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: mcp_everything-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 43.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for mcp_everything-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3313b683f812a71f22d759065afcf4fb72736261a0692ae9ba874e4bc91d7c77
MD5 ec58fb131283cac6d4a9fdc1fb499b23
BLAKE2b-256 da10496d2bce9e85dd5085759d7d8eb8e224afa0451cb2b4739bad8860a23d01

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page