IsItDown MCP Server

by hesreallyhim
Verified

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

mcp-server-isitdown

www.isitdownrightnow.comにクエリを実行して、Web サイトが現在ダウンしているかどうかを確認する MCP サーバー。

概要

この MCP サーバーは、Web サイトにダウンタイムが発生しているかどうかを確認するための簡単なツールを提供し、最近のダウンタイム イベントに関する情報も提供できます。

ツール

以下のツールが実装されています。

  • get_website_status : ウェブサイトが現在ダウンしているかどうかを確認します。
    • Input : root_domain (文字列): チェックするウェブサイトのルートドメイン (例: "example.com")
    • Output : ウェブサイトが稼働しているか停止しているかを示す文字列メッセージと、最後に記録された停止時間情報

インストール

: このパッケージは現在、パブリックレジストリに公開されていません。インストールはソースからのみ可能です。

ソースから

# 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 .

Claudeデスクトップの設定

この構成をclaude_desktop_config.jsonファイルに追加します。

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

使用法

スタンドアロンのMCPサーバーとして実行

# Using the installed script mcp-server-isitdown # Using the Python module python -m mcp_server_isitdown

Dekstop の Claude の使用例:

  • 「Wikipediaは今ダウンしていますか?」
  • 「最後にRedditがダウンしたのはいつですか?」

図書館として使う

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

発達

# 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 the package uv build # Install the built package uv pip install dist/mcp_isitdown_service-*.whl

ライセンス

マサチューセッツ工科大学

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

ユーザーが isitdownrightnow.com にクエリを実行して、Web サイトにダウンタイムが発生しているかどうかを確認し、最近のダウンタイム イベントに関するステータス情報と詳細を提供できる MCP サーバーです。

  1. Overview
    1. Tools
      1. Installation
        1. From Source
      2. Configuration for Claude Desktop
        1. Usage
          1. Run as a standalone MCP server
          2. Example usage with Claude for Dekstop:
          3. Use as a library
        2. Development
          1. Build
            1. License

              Appeared in Searches

              ID: 1wx4z4amkm