Wikipedia Mcp

Created By
automateyournetworka year ago
Skip to content Navigation Menu automateyournetwork Wikipedia_MCP Type / to search Code Issues Pull requests Actions Projects Wiki Security Insights Settings Owner avatar Wikipedia_MCP Public automateyournetwork/Wikipedia_MCP Go to file t Name automateyournetwork automateyournetwork initial 0cd4b24 Β· 1 minute ago Dockerfile initial 1 minute ago LICENSE Initial commit 2 hours ago README.md initial 1 minute ago main.py initial 1 minute ago requirements.txt initial 1 minute ago Repository files navigation README Apache-2.0 license Wikipedia MCP Server This project provides a Model Context Protocol (MCP) server that exposes structured access to Wikipedia content. It uses the FastMCP framework to define tools for use in AI workflows, agents, or developer environments like Claude and VS Code. βœ… Features πŸ” Search for Wikipedia pages πŸ“„ Retrieve page summary, full content, and HTML πŸ”— Extract links, images, references, and categories πŸ“Œ Detect disambiguation options πŸ“Œ Check if a page exists ⚑ Built on FastMCP β€” plug into any agent system πŸ›  Installation (Local) git clone https://github.com/yourname/wikipedia-mcp-server.git cd wikipedia-mcp-server python3 -m venv .venv source .venv/bin/activate pip install -r requirements.txt python wikipedia_mcp_server.py πŸ›  Installation (Docker) 🐳 Docker Setup Build the container: docker build -t wikipedia-mcp . Run the server: docker run -it --rm wikipedia-mcp πŸ›  Usage 🧠 Available Tools Tool Name Description -------------------- -------------------------------------------------- get_summary Get a summary of a Wikipedia page get_content Get the full content of a Wikipedia page get_html Get the rendered HTML of a Wikipedia page get_images Get a list of image URLs from a Wikipedia page get_links Get a list of internal links from a Wikipedia page get_references Get a list of external references from a Wikipedia page get_categories Get a list of Wikipedia categories get_url Get the direct Wikipedia URL get_title Get the canonical title of a Wikipedia page get_page_id Get the internal Wikipedia page ID search_pages Search for Wikipedia page titles check_page_exists Check if a Wikipedia page exists disambiguation_options Get disambiguation options for ambiguous titles -------------------- -------------------------------------------------- πŸ“ File Structure . β”œβ”€β”€ wikipedia_mcp_server.py β”œβ”€β”€ requirements.txt β”œβ”€β”€ Dockerfile β”œβ”€β”€ README.md πŸ’» VS Code / Claude MCP Integration Add this to your .vscode/settings.json or Claude configuration to launch this server using MCP: βœ… For Local Python Execution { "mcp": { "servers": { "wikipedia": { "type": "stdio", "command": "python3", "args": [ "/absolute/path/to/wikipedia_mcp_server.py" ] } } } } 🐳 For Docker Execution { "mcp": { "servers": { "wikipedia": { "type": "stdio", "command": "docker", "args": [ "run", "--rm", "-i", "--mount", "type=bind,src=${workspaceFolder},dst=/workspace", "wikipedia-mcp" ] } } } } About A Model Context Protocol (MCP) Server for Wikipedia Resources Readme License Apache-2.0 license Activity Stars 1 star Watchers 1 watching Forks 0 forks Releases No releases published Create a new release Packages No packages published Publish your first package Languages Python 96.6% Dockerfile 3.4% Suggested workflows Based on your tech stack Python application logo Python application Create and test a Python application. Python package logo Python package Create and test a Python package on multiple Python versions. Python Package using Anaconda logo Python Package using Anaconda Create and test a Python package on multiple Python versions using Anaconda for package management. More workflows Footer Β© 2025 GitHub, Inc. Footer navigation Terms Privacy Security Status Docs Contact Manage cookies Do not share my personal information
Overview

What is Wikipedia MCP?

Wikipedia MCP is a Model Context Protocol (MCP) server that provides structured access to Wikipedia content, designed for use in AI workflows and developer environments.

How to use Wikipedia MCP?

To use Wikipedia MCP, you can either install it locally or run it using Docker. For local installation, clone the repository, set up a virtual environment, install the requirements, and run the server. For Docker, build the container and run the server using Docker commands.

Key features of Wikipedia MCP?

  • Search for Wikipedia pages
  • Retrieve page summaries, full content, and HTML
  • Extract links, images, references, and categories
  • Detect disambiguation options
  • Check if a page exists
  • Built on FastMCP for integration with agent systems

Use cases of Wikipedia MCP?

  1. Integrating Wikipedia content into AI applications.
  2. Automating data retrieval for research projects.
  3. Enhancing developer tools with structured Wikipedia access.

FAQ from Wikipedia MCP?

  • Can I use Wikipedia MCP for any Wikipedia page?

Yes! Wikipedia MCP allows access to any public Wikipedia page.

  • Is there a Docker version available?

Yes! You can run Wikipedia MCP using Docker for easier deployment.

  • What programming languages are supported?

Wikipedia MCP is primarily built with Python.

Server Config

{
  "mcpServers": {
    "wikipedia": {
      "type": "stdio",
      "command": "python3",
      "args": [
        "/absolute/path/to/wikipedia_mcp_server.py"
      ]
    }
  }
}
Project Info
Created At
a year ago
Updated At
a year ago
Author Name
automateyournetwork
Star
-
Language
-
License
-

Recommend Servers

View All
Docwand

4 hours ago
Shippo
@Shippo

12 hours ago
Puter Mcp

a day ago
Puter Mcp

a day ago
//beforeyouship β€” LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture β€” retries, prompt caching, batch discounts, infra overhead, and 3Γ—/10Γ— growth β€” across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** β€” demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3Γ—/10Γ— growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing β€” input, output, cached input, batch β€” with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** β€” add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

3 hours ago