drio
Open app

MCP-Wikipedia-API-Server

Source

A FastAPI-MCP server that fetches Wikipedia summaries for AI assistants, deployed using Google Colab and Ngrok.

Catalog onlyCatalog onlySTDIO

Overview

MCP-Wikipedia-API-Server is a FastAPI-based server that fetches Wikipedia summaries for AI assistants, enabling them to provide quick and relevant information.

To use the server, deploy it on Google Colab, authenticate Ngrok, and then send queries to fetch Wikipedia summaries.

  • Fetches Wikipedia summaries based on user queries - Runs as an MCP-compatible server for AI interactions - Utilizes FastAPI and Wikipedia API - Quick deployment using Google Colab and Ngrok
  1. Enabling AI assistants to provide instant Wikipedia information
  2. Assisting in research by fetching relevant summaries
  3. Enhancing user interactions with AI through informative responses

Add to your AI client

Use these steps to connect MCP-Wikipedia-API-Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-api-server-rishavv007": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-api-server-rishavv007"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-api-server-rishavv007": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-api-server-rishavv007"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-api-server-rishavv007": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-api-server-rishavv007"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-api-server-rishavv007": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-api-server-rishavv007"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-api-server-rishavv007": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-api-server-rishavv007"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-api-server-rishavv007": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-api-server-rishavv007"
      ]
    }
  }
}

FAQ

Can this server handle multiple queries at once?

Yes! The server is designed to handle multiple requests efficiently.

Is there a limit to the number of summaries fetched?

No, you can fetch as many summaries as needed, subject to Wikipedia's API usage policies.

Do I need to pay for using Google Colab and Ngrok?

Both services offer free tiers, but usage limits may apply.