drio
Open app

Covid Mcp Server

Source

MCP server for fetching real-time COVID-19 data by country

Catalog onlyCatalog onlySTDIO

Overview

Covid MCP Server is a custom Model Context Protocol (MCP) server that provides real-time COVID-19 statistics for any country using the disease.sh API.

To use the Covid MCP Server, run the server and connect it to an MCP host (e.g., Claude Desktop). You can then utilize the getCovidStatsByCountry tool to fetch COVID-19 data.

  • Fetches real-time COVID-19 data by country. - Utilizes the disease.sh API for accurate statistics. - Easy integration with MCP hosts.
  1. Providing up-to-date COVID-19 statistics for research purposes.
  2. Integrating with applications that require real-time health data.
  3. Supporting developers in building COVID-19 related tools and applications.

Add to your AI client

Use these steps to connect Covid Mcp 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": {
    "covid-mcp-server-aarushkx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-covid-mcp-server-aarushkx"
      ]
    }
  }
}

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": {
    "covid-mcp-server-aarushkx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-covid-mcp-server-aarushkx"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What data can I fetch using this server?

You can fetch various COVID-19 statistics such as total cases, deaths, and recoveries by country.

Is the server free to use?

Yes! The Covid MCP Server is free to use for everyone.

How accurate is the data provided?

The data is sourced from the disease.sh API, which is known for its accuracy and reliability.