covid-193

covid-193

4.0

The COVID-193 MCP Server provides real-time and historical data on the COVID-19 pandemic globally.

The COVID-193 MCP Server offers a comprehensive set of tools for monitoring the COVID-19 pandemic worldwide. It provides free, real-time access to statistics and historical data, enabling users to stay informed about the progression of the coronavirus. The server updates data every 15 minutes, covering all affected countries and offering historical insights to analyze trends over time. It is a valuable resource for researchers, policymakers, and the general public to track the pandemic's impact and make informed decisions.

Features

  • Real-time Data Updates: Get statistics for all countries about COVID-19, updated every 15 minutes.
  • Global Coverage: Access data from all countries affected by the coronavirus.
  • Historical Data: Retrieve historical statistics for any country to analyze trends over time.

MCP Tools

  • Countries: Retrieve a complete list of all countries affected by the coronavirus. This tool also allows for quick searches of specific countries.
  • Statistics: Access the current status of COVID-19 spread in all countries. This tool allows filtering to obtain statistics for a specific country or the entire world.
  • History: Obtain the historical statistics for any given country. This tool provides a comprehensive view of the data's evolution or regression over time.

Usage with Different Platforms

python

python
import requests

url = 'https://covid193.mcpserver.com/statistics'
response = requests.get(url)
data = response.json()
print(data)

javascript

javascript
fetch('https://covid193.mcpserver.com/statistics')
  .then(response => response.json())
  .then(data => console.log(data));