A Model Context Protocol (MCP) server that retrieves information from Wikipedia to provide context to LLMs.
10K+
6
10 Tools
Version 4.43 or later needs to be installed to add the server automatically
Use cases
About
A Model Context Protocol (MCP) server that retrieves information from Wikipedia to provide context to LLMs.
Attribute | Details |
---|---|
Docker Image | mcp/wikipedia-mcp |
Author | Rudra-ravi |
Repository | https://github.com/Rudra-ravi/wikipedia-mcp |
Dockerfile | https://github.com/Rudra-ravi/wikipedia-mcp/blob/main/Dockerfile |
Docker Image built by | Docker Inc. |
Docker Scout Health Score | |
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 |
Licence | MIT License |
Tools provided by this Server | Short Description |
---|---|
extract_key_facts | Extract key facts from a Wikipedia article, optionally focused on a topic. |
get_article | Get the full content of a Wikipedia article. |
get_coordinates | Get the coordinates of a Wikipedia article. |
get_links | Get the links contained within a Wikipedia article. |
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_summary | Get a summary of a Wikipedia article. |
search_wikipedia | Search Wikipedia for articles matching a query. |
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.
Parameters | Type | Description |
---|---|---|
title | string | |
count | integer optional | |
topic_within_article | string optional |
get_article
Get the full content of a Wikipedia article.
Parameters | Type | Description |
---|---|---|
title | string |
get_coordinates
Get the coordinates of a Wikipedia article.
Parameters | Type | Description |
---|---|---|
title | string |
get_links
Get the links contained within a Wikipedia article.
Parameters | Type | Description |
---|---|---|
title | string |
get_related_topics
Get topics related to a Wikipedia article based on links and categories.
Parameters | Type | Description |
---|---|---|
title | string | |
limit | integer optional |
get_sections
Get the sections of a Wikipedia article.
Parameters | Type | Description |
---|---|---|
title | string |
get_summary
Get a summary of a Wikipedia article.
Parameters | Type | Description |
---|---|---|
title | string |
search_wikipedia
Search Wikipedia for articles matching a query.
Parameters | Type | Description |
---|---|---|
query | string | |
limit | integer optional |
summarize_article_for_query
Get a summary of a Wikipedia article tailored to a specific query.
Parameters | Type | Description |
---|---|---|
query | string | |
title | string | |
max_length | integer optional |
summarize_article_section
Get a summary of a specific section of a Wikipedia article.
Parameters | Type | Description |
---|---|---|
section_title | string | |
title | string | |
max_length | integer optional |
{
"mcpServers": {
"wikipedia-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/wikipedia-mcp"
]
}
}
}
Manual installation
You can install the MCP server using:
Installation for