Base Wikipedia Tools MCP

Provides basic tools for searching and retrieving Wikipedia content.

Available Tools & Examples

wikipedia_search

Description: Searches for articles on Wikipedia in a specified language.

Example Request:
curl -X POST https://wikimcp.eu/mcp \
-H "Content-Type: application/json" \
-d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
        "name": "wikipedia_search",
        "arguments": {
            "query": "Europe",
            "lang": "en"
        }
    },
    "id": 1
}'

wikipedia_get_page

Description: Retrieves the content of a specific Wikipedia page.

Example Request:
curl -X POST https://wikimcp.eu/mcp \
-H "Content-Type: application/json" \
-d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
        "name": "wikipedia_get_page",
        "arguments": {
            "title": "European Union",
            "lang": "en"
        }
    },
    "id": 1
}'