C

COVID-19 Statistics

Provides real-time COVID-19 statistics by connecting to the disease.sh API, delivering case counts, deaths, recoveries, and testing data for any country.

COVID-19·No reviews yet
Repo
Share:

About

Provides real-time COVID-19 statistics by connecting to the disease.sh API, delivering case counts, deaths, recoveries, and testing data for any country.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about COVID-19 Statistics.

What data does the COVID-19 Statistics MCP provide?
This MCP delivers real-time COVID-19 statistics. It includes case counts, deaths, recoveries, and testing data for various countries, sourced from the disease.sh API.
How can I integrate COVID-19 Statistics with an MCP client like Claude Desktop?
To integrate, follow the client's instructions for adding a new MCP. Specify 'stdio' as the transport and 'none' for authentication. The server's repository is available for reference.
Does the COVID-19 Statistics MCP require an API key or other credentials?
No, this MCP does not require an API key, OAuth, or any other credentials for operation as its authentication type is 'none'.
What are the common use cases for the COVID-19 Statistics MCP?
Typical use cases involve fetching current COVID-19 statistics for specific countries. Developers can integrate this data into applications requiring up-to-date pandemic information.
Is there any cost associated with using the COVID-19 Statistics MCP?
The MCP itself is open-source and free to use. Any potential costs would depend on the usage policies of the underlying disease.sh API or your compute infrastructure.
What is a potential limitation when using this MCP?
A realistic limitation is that data accuracy and availability are dependent on the disease.sh API. Disruptions or changes to that API could affect the MCP's functionality.

Install COVID-19 Statistics

Claude Desktop

Add this to claude_desktop_config.json.

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

Cursor

Add this to ~/.cursor/mcp.json.

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

VS Code

Add this to your workspace settings.json.

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

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.