|
| 1 | +# Wikipedia MCP Server |
| 2 | + |
| 3 | +A Model Context Protocol (MCP) server that retrieves information from Wikipedia to provide context to LLMs. |
| 4 | + |
| 5 | +[What is an MCP Server?](https://www.anthropic.com/news/model-context-protocol) |
| 6 | + |
| 7 | +## Characteristics |
| 8 | +Attribute|Details| |
| 9 | +|-|-| |
| 10 | +**Image Source**|Official Image |
| 11 | +**Docker Image**|[mcp/wikipedia-mcp](https://hub.docker.com/repository/docker/mcp/wikipedia-mcp) |
| 12 | +**Author**|[Rudra-ravi](https://github.com/Rudra-ravi) |
| 13 | +**Repository**|https://github.com/Rudra-ravi/wikipedia-mcp |
| 14 | +**Dockerfile**|https://github.com/Rudra-ravi/wikipedia-mcp/blob/main/Dockerfile |
| 15 | +**Docker Image built by**|Docker Inc. |
| 16 | +**Docker Scout Health Score**|  |
| 17 | +**Verify Signature**|`COSIGN_REPOSITORY=mcp/signatures cosign verify mcp/wikipedia-mcp --key https://raw.githubusercontent.com/docker/keyring/refs/heads/main/public/mcp/latest.pub` |
| 18 | +**Licence**|MIT License |
| 19 | + |
| 20 | +## Available Tools |
| 21 | +Tools provided by this Server|Short Description |
| 22 | +-|- |
| 23 | +`get_article`|Get the full content of a Wikipedia article.| |
| 24 | +`get_related_topics`|Get topics related to a Wikipedia article based on links and categories.| |
| 25 | +`get_summary`|Get a summary of a Wikipedia article.| |
| 26 | +`search_wikipedia`|Search Wikipedia for articles matching a query.| |
| 27 | + |
| 28 | +--- |
| 29 | +## Tools Details |
| 30 | + |
| 31 | +#### Tool: **`get_article`** |
| 32 | +Get the full content of a Wikipedia article. |
| 33 | +Parameters|Type|Description |
| 34 | +-|-|- |
| 35 | +`title`|`string`| |
| 36 | + |
| 37 | +--- |
| 38 | +#### Tool: **`get_related_topics`** |
| 39 | +Get topics related to a Wikipedia article based on links and categories. |
| 40 | +Parameters|Type|Description |
| 41 | +-|-|- |
| 42 | +`title`|`string`| |
| 43 | +`limit`|`integer` *optional*| |
| 44 | + |
| 45 | +--- |
| 46 | +#### Tool: **`get_summary`** |
| 47 | +Get a summary of a Wikipedia article. |
| 48 | +Parameters|Type|Description |
| 49 | +-|-|- |
| 50 | +`title`|`string`| |
| 51 | + |
| 52 | +--- |
| 53 | +#### Tool: **`search_wikipedia`** |
| 54 | +Search Wikipedia for articles matching a query. |
| 55 | +Parameters|Type|Description |
| 56 | +-|-|- |
| 57 | +`query`|`string`| |
| 58 | +`limit`|`integer` *optional*| |
| 59 | + |
| 60 | +--- |
| 61 | +## Use this MCP Server |
| 62 | + |
| 63 | +```json |
| 64 | +{ |
| 65 | + "mcpServers": { |
| 66 | + "wikipedia-mcp": { |
| 67 | + "command": "docker", |
| 68 | + "args": [ |
| 69 | + "run", |
| 70 | + "-i", |
| 71 | + "--rm", |
| 72 | + "mcp/wikipedia-mcp" |
| 73 | + ] |
| 74 | + } |
| 75 | + } |
| 76 | +} |
| 77 | +``` |
| 78 | + |
| 79 | +[Why is it safer to run MCP Servers with Docker?](https://www.docker.com/blog/the-model-context-protocol-simplifying-building-ai-apps-with-anthropic-claude-desktop-and-docker/) |
0 commit comments