MCP server/search

Wikipedia MCP Server

A Model Context Protocol server that provides capabilities to query Wikipedia.

★ 3progamesigner/wikipedia-mcp ↗by progamesignerupdated
1

Add it to Claude Code

claude mcp add wikipedia-mcp -- uvx wikipedia-mcp-server@latest
2

Make your agent remember this setup

wikipedia-mcp's config, env vars, and the gotchas you hit — recalled in every future Claude Code, Cursor, and Codex session.

npx conare@latest

Free · one command · indexes the sessions already on disk. Set up in the browser instead →

What it does

  • Search Wikipedia for specific keywords
  • Fetch full page content using Wikipedia page IDs
  • Support for multiple languages
  • Compatible with standard MCP clients

Tools 2

searchSearch for a keyword on Wikipedia.
fetchFetch Wikipedia page content by ID.

Try it

Search for 'Model Context Protocol' on Wikipedia in English.
Find the Wikipedia page ID for 'Artificial Intelligence' and fetch its content.
Search for 'Quantum Computing' in German and summarize the key points.
Fetch the Wikipedia article for 'Claude (software)' to get the latest details.
Original README from progamesigner/wikipedia-mcp

Wikipedia MCP Server

A Model Context Protocol server that provides capabilities to query Wikipedia. This server enables LLMs to get information from Wikipedia.

Available Tools

  • search - Search keyword on Wikipedia.

    • Required arguments:
      • keyword (string): The search keyword
      • language (string): The language
  • fetch - Fetch Wikipedia page content.

    • Required arguments:
      • id (integer): The pade ID
      • language (string): The language

Installation

Using uv (recommended)

When using `uv` no specific installation is needed. We will use `uvx` to directly run wikipedia-mcp.

Using PIP

Alternatively you can install wikipedia-mcp via pip:

pip install wikipedia-mcp-server

After installation, you can run it as a script using:

python -m wikipedia_mcp

Configurations

Using uvx

{
  "mcpServers": {
    "wikipedia-mcp": {
      "command": "uvx",
      "args": [
        "wikipedia-mcp-server@latest"
      ]
    }
  }
}

Using docker

{
  "mcpServers": {
    "wikipedia-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/progamesigner/wikipedia-mcp:latest"
      ]
    }
  }
}

Using pip installation

{
  "mcpServers": {
    "wikipedia-mcp": {
      "command": "python",
      "args": [
        "-m",
        "wikipedia_mcp"
      ]
    }
  }
}

Build

Docker build:

docker build -t wikipedia-mcp .

Frequently Asked Questions

What are the key features of Wikipedia MCP Server?

Search Wikipedia for specific keywords. Fetch full page content using Wikipedia page IDs. Support for multiple languages. Compatible with standard MCP clients.

What can I use Wikipedia MCP Server for?

Retrieving up-to-date factual information for research tasks. Summarizing complex topics directly from Wikipedia articles. Integrating encyclopedic knowledge into LLM-based workflows. Cross-referencing information across different language versions of Wikipedia.

How do I install Wikipedia MCP Server?

Install Wikipedia MCP Server by running: uvx wikipedia-mcp-server@latest

What MCP clients work with Wikipedia MCP Server?

Wikipedia MCP Server works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Conare · memory for coding agents

Turn this server into reusable context

Keep Wikipedia MCP Server docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Set up free$npx conare@latest