Skip to main content
Glama
hesreallyhim

IsItDown MCP Server

by hesreallyhim

mcp-server-isitdown

An MCP server that checks if a website is currently down by querying www.isitdownrightnow.com.

Overview

This MCP server provides a simple tool to check if a website is experiencing downtime, and can provide some information about recent downtime events.

Related MCP server: stillonline-mcp

Tools

The following tools are implemented:

  • get_website_status: Checks if a website is currently down or not.

    • Input: root_domain (string): The root domain of the website to check (e.g., "example.com")

    • Output: A string message indicating whether the website is up or down, with the last recorded downtime information

Installation

Installing via Smithery

To install IsItDown Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @hesreallyhim/mcp-server-isitdown --client claude

Note: This package is not currently published to a public registry. Installation is only available from source.

From Source

# Clone the repository 
git clone https://github.com/yourusername/mcp-server-isitdown.git
cd mcp-server-isitdown

# Using uv (recommended)
uv pip install -e .

# Using pip
pip install -e .

Configuration for Claude Desktop

Add this configuration to your claude_desktop_config.json file:

"isitdown": {
  "command": "/path/to/uv",
  "args": [
    "--directory",
    "/path/to/cloned/repo/src",
    "run",
    "mcp_server_isitdown"
  ]
}

Usage

Run as a standalone MCP server

# Using the installed script
mcp-server-isitdown

# Using the Python module
python -m mcp_server_isitdown

Example usage with Claude for Dekstop:

  • "Is wikipedia down right now?"

  • "When was the last time reddit was down?"

Use as a library

from mcp_server_isitdown.server import get_website_status

# Check if a website is down (async function)
async def check_website():
    result = await get_website_status("example.com")
    print(result)  # Prints status message with up/down status

Development

# Type checking
uvx mypy .

# Run all pre-commit hooks
uv pre-commit run --all-files

# Install in development mode
uv pip install -e ".[dev]"

# Run the Inspector
mcp dev src/mcp_server_isitdown/server.py

Build

# Build the package
uv build

# Install the built package
uv pip install dist/mcp_isitdown_service-*.whl

License

MIT

Available Tools

1 tool
get_website_statusC
Check the status of a website.

This function takes a root domain as input and checks whether the website is up or down
by making a request to isitdownrightnow.com

Args:
    root_domain (str): The root domain of the website to check.

Returns:
    str: A message indicating whether the website is up or down, or if the status could not be determined.
ParametersJSON Schema
NameRequiredDescriptionDefault
root_domainYes

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It mentions making a request to an external service but doesn't disclose behavioral traits like rate limits, network dependencies, error handling, or what 'could not be determined' means. The description is minimal and lacks operational context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized and front-loaded, starting with the core purpose. The Args and Returns sections are structured but could be more integrated; overall, it's efficient with minimal waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations, 0% schema coverage, and no output schema, the description is incomplete. It lacks details on return format, error conditions, performance, or dependencies, making it inadequate for a tool that interacts with an external service.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It explains that 'root_domain' is the root domain of the website to check, adding basic meaning. However, it doesn't clarify format (e.g., with or without protocol) or provide examples, leaving gaps in parameter understanding.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Check the status of a website' with the specific action of making a request to isitdownrightnow.com. It distinguishes the tool by specifying the external service used, though there are no sibling tools to differentiate from.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives, prerequisites, or limitations. It simply states what the tool does without context about appropriate scenarios or constraints.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 1 tool updatev1.0.0
    • Addedget_website_status

TDQS

B3.1/5.0
Disambiguation5/5

With only one tool, there is no possibility of ambiguity or overlap between tools. The single tool 'get_website_status' has a clear, distinct purpose that cannot be confused with any other tool in this set.

Naming Consistency5/5

The naming follows a consistent verb_noun pattern ('get_website_status'), and with only one tool, there is no inconsistency to evaluate. The naming convention is clear and appropriate for the tool's function.

Tool Count2/5

A single tool is too few for most server purposes, as it limits functionality and can lead to dead ends. For a website status checking server, additional tools like checking multiple sites, monitoring history, or getting detailed status information would be expected to provide a more complete surface.

Completeness2/5

The tool set is severely incomplete for the domain of website status checking. While 'get_website_status' covers a basic check, there are significant gaps such as batch checking, historical data retrieval, or status monitoring over time, which agents might need for more complex workflows.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    This server enables checking real-time service status and outage information from Downdetector for various services and regions.
    1
    55
    2
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    MCP server for StillOnline uptime monitoring, enabling management of projects, checks, incidents, and public status pages through natural language.
    10
    47
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    An MCP server for Updown.io that enables managing website monitoring checks, viewing downtimes and metrics, configuring alert recipients, and controlling status pages through natural language.
    15
    16
    MIT

Appeared in Searches

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hesreallyhim/mcp-server-isitdown'

If you have feedback or need assistance with the MCP directory API, please join our Discord server