# Wikipedia Integration Server

Provide real-time access to Wikipedia information to enhance AI assistants with accurate and up-to-date factual context. Enable LLMs to search, retrieve, summarize, and extract detailed content from …

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add geobio/wikipedia-mcp

# Browse available tools
npx -y @smithery/cli@latest tool list geobio/wikipedia-mcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get geobio/wikipedia-mcp search_wikipedia

# Call a tool
npx -y @smithery/cli@latest tool call geobio/wikipedia-mcp search_wikipedia '{}'
```

## Direct MCP Connection

Endpoint: `https://wikipedia-mcp--geobio.run.tools`

## Tools (9)

- `search_wikipedia` — Search Wikipedia for articles matching a query.
- `get_article` — Get the full content of a Wikipedia article.
- `get_summary` — Get a summary of a Wikipedia article.
- `summarize_article_for_query` — Get a summary of a Wikipedia article tailored to a specific query.
- `summarize_article_section` — Get a summary of a specific section of a Wikipedia article.
- `extract_key_facts` — Extract key facts from a Wikipedia article, optionally focused on a topic.
- `get_related_topics` — Get topics related to a Wikipedia article based on links and categories.
- `get_sections` — Get the sections of a Wikipedia article.
- `get_links` — Get the links contained within a Wikipedia article.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get geobio/wikipedia-mcp <tool-name>
```

---

Source: https://github.com/geobio/wikipedia-mcp | License: MIT
