A Model Context Protocol (MCP) server that retrieves information from Wikipedia to provide contex...
100K+
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 |
| Attribute | Details |
|---|---|
| Dockerfile | https://github.com/Rudra-ravi/wikipedia-mcp/blob/88579193daa42cd9c6d95492448a3b2785d4fbf9/Dockerfile |
| Commit | 88579193daa42cd9c6d95492448a3b2785d4fbf9 |
| 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. |
test_wikipedia_connectivity | Provide diagnostics for Wikipedia API connectivity. |
wikipedia_extract_key_facts | Extract key facts from a Wikipedia article, optionally focused on a topic. |
wikipedia_get_article | Get the full content of a Wikipedia article. |
wikipedia_get_coordinates | Get the coordinates of a Wikipedia article. |
wikipedia_get_links | Get the links contained within a Wikipedia article. |
wikipedia_get_related_topics | Get topics related to a Wikipedia article based on links and categories. |
wikipedia_get_sections | Get the sections of a Wikipedia article. |
wikipedia_get_summary | Get a summary of a Wikipedia article. |
wikipedia_search_wikipedia | Search Wikipedia for articles matching a query. |
wikipedia_summarize_article_for_query | Get a summary of a Wikipedia article tailored to a specific query. |
wikipedia_summarize_article_section | Get a summary of a specific section of a Wikipedia article. |
wikipedia_test_wikipedia_connectivity | Provide diagnostics for Wikipedia API connectivity. |
extract_key_factsExtract key facts from a Wikipedia article, optionally focused on a topic.
Returns a dictionary containing a list of facts.
| Parameters | Type | Description |
|---|---|---|
title | string | |
count | integer optional | |
topic_within_article | string optional |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
get_articleGet the full content of a Wikipedia article.
Returns a dictionary containing article details or an error message if retrieval fails.
| Parameters | Type | Description |
|---|---|---|
title | string |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
get_coordinatesGet the coordinates of a Wikipedia article.
Returns a dictionary containing coordinate information.
| Parameters | Type | Description |
|---|---|---|
title | string |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
get_linksGet the links contained within a Wikipedia article.
Returns a dictionary with the article title and list of links.
| Parameters | Type | Description |
|---|---|---|
title | string |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
get_related_topicsGet topics related to a Wikipedia article based on links and categories.
Returns a list of related topics up to the specified limit.
| Parameters | Type | Description |
|---|---|---|
title | string | |
limit | integer optional |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
get_sectionsGet the sections of a Wikipedia article.
Returns a dictionary with the article title and list of sections.
| Parameters | Type | Description |
|---|---|---|
title | string |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
get_summaryGet a summary of a Wikipedia article.
Returns a dictionary with the title and summary string. On error, includes an error message instead of a summary.
| Parameters | Type | Description |
|---|---|---|
title | string |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
search_wikipediaSearch Wikipedia for articles matching a query.
| Parameters | Type | Description |
|---|---|---|
query | string | The search term to look up on Wikipedia. |
limit | integer optional | Maximum number of results to return (1-500). |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
summarize_article_for_queryGet a summary of a Wikipedia article tailored to a specific query.
The summary is a snippet around the query within the article text or summary. The max_length parameter controls the length of the snippet.
| Parameters | Type | Description |
|---|---|---|
query | string | |
title | string | |
max_length | integer optional |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
summarize_article_sectionGet a summary of a specific section of a Wikipedia article.
Returns a dictionary containing the section summary or an error.
| Parameters | Type | Description |
|---|---|---|
section_title | string | |
title | string | |
max_length | integer optional |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
test_wikipedia_connectivityProvide diagnostics for Wikipedia API connectivity.
Returns the base API URL, language, site information, and response time in milliseconds. If connectivity fails, status will be 'failed' with error details.
wikipedia_extract_key_factsExtract key facts from a Wikipedia article, optionally focused on a topic.
Returns a dictionary containing a list of facts.
| Parameters | Type | Description |
|---|---|---|
title | string | |
count | integer optional | |
topic_within_article | string optional |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
wikipedia_get_articleGet the full content of a Wikipedia article.
Returns a dictionary containing article details or an error message if retrieval fails.
| Parameters | Type | Description |
|---|---|---|
title | string |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
wikipedia_get_coordinatesGet the coordinates of a Wikipedia article.
Returns a dictionary containing coordinate information.
| Parameters | Type | Description |
|---|---|---|
title | string |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
wikipedia_get_linksGet the links contained within a Wikipedia article.
Returns a dictionary with the article title and list of links.
| Parameters | Type | Description |
|---|---|---|
title | string |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
wikipedia_get_related_topicsGet topics related to a Wikipedia article based on links and categories.
Returns a list of related topics up to the specified limit.
| Parameters | Type | Description |
|---|---|---|
title | string | |
limit | integer optional |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
wikipedia_get_sectionsGet the sections of a Wikipedia article.
Returns a dictionary with the article title and list of sections.
| Parameters | Type | Description |
|---|---|---|
title | string |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
wikipedia_get_summaryGet a summary of a Wikipedia article.
Returns a dictionary with the title and summary string. On error, includes an error message instead of a summary.
| Parameters | Type | Description |
|---|---|---|
title | string |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
wikipedia_search_wikipediaSearch Wikipedia for articles matching a query.
| Parameters | Type | Description |
|---|---|---|
query | string | The search term to look up on Wikipedia. |
limit | integer optional | Maximum number of results to return (1-500). |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
wikipedia_summarize_article_for_queryGet a summary of a Wikipedia article tailored to a specific query.
The summary is a snippet around the query within the article text or summary. The max_length parameter controls the length of the snippet.
| Parameters | Type | Description |
|---|---|---|
query | string | |
title | string | |
max_length | integer optional |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
wikipedia_summarize_article_sectionGet a summary of a specific section of a Wikipedia article.
Returns a dictionary containing the section summary or an error.
| Parameters | Type | Description |
|---|---|---|
section_title | string | |
title | string | |
max_length | integer optional |
This tool is read-only. It does not modify its environment.
This tool interacts with external entities.
wikipedia_test_wikipedia_connectivityProvide diagnostics for Wikipedia API connectivity.
Returns the base API URL, language, site information, and response time in milliseconds. If connectivity fails, status will be 'failed' with error details.
{
"mcpServers": {
"wikipedia-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/wikipedia-mcp"
]
}
}
}
Content type
Image
Digest
sha256:32ce60811…
Size
70 MB
Last updated
3 months ago
docker pull mcp/wikipedia-mcpPulls:
1,582
Jul 6 to Jul 12