Skip to content

Commit eb21fde

Browse files
committed
Generate wikipedia-mcp from ai-mcp
Signed-off-by: David Gageot <[email protected]>
1 parent 96eca77 commit eb21fde

File tree

3 files changed

+85
-6
lines changed

3 files changed

+85
-6
lines changed

prompts/catalog.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2772,17 +2772,17 @@ registry:
27722772
required:
27732773
- url
27742774
- username
2775-
rudra-ravi/wikipedia-mcp:
2776-
description: A Model Context Protocol (MCP) server that retrieves information from Wikipedia to provide context to LLMs
2775+
wikipedia-mcp:
2776+
description: A Model Context Protocol (MCP) server that retrieves information from Wikipedia to provide context to LLMs.
27772777
title: Wikipedia
27782778
ref: github:docker/labs-ai-tools-for-devs?ref=main&path=prompts/mcp/wikipedia-mcp.md
27792779
readme: https://github.com/docker/labs-ai-tools-for-devs/blob/main/prompts/mcp/readmes/wikipedia-mcp.md
2780-
source: https://github.com/Rudra-ravi/wikipedia-mcp
2781-
icon: https://avatars.githubusercontent.com/u/182288589?s=200&v=4
2780+
source: https://github.com/Rudra-ravi/wikipedia-mcp/tree/main
2781+
icon: https://avatars.githubusercontent.com/u/56668?s=200&v=4
27822782
tools:
2783+
- name: get_article
27832784
- name: get_related_topics
27842785
- name: get_summary
2785-
- name: get_article
27862786
- name: search_wikipedia
27872787
prompts: 0
27882788
resources: {}

prompts/mcp/readmes/wikipedia-mcp.md

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
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**| ![Docker Scout Health Score](https://api.scout.docker.com/v1/policy/insights/org-image-score/badge/mcp/wikipedia-mcp)
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/)

prompts/mcp/wikipedia-mcp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ mcp:
33
- container:
44
image: mcp/wikipedia-mcp:latest
55
source:
6-
url: https://github.com/Rudra-ravi/wikipedia-mcp
6+
url: https://github.com/Rudra-ravi/wikipedia-mcp/tree/main
77
---

0 commit comments

Comments
 (0)