io.globalping/mcp

平台与服务

by jsdelivr

连接全球网络测量平台,可从世界任意地点运行网络命令,执行远程观测与连通性测试。

什么是 io.globalping/mcp

连接全球网络测量平台,可从世界任意地点运行网络命令,执行远程观测与连通性测试。

README

Globalping MCP Server

<p align="center"> <img src="https://raw.githubusercontent.com/jsdelivr/globalping-media/refs/heads/master/logo/full_colored_dark.svg" alt="Globalping Logo" width="180"/> </p> <p align="center"> <b>Enable AI models to interact with a global network measurement platform through natural language. Give network access to any LLM.</b> </p> <p align="center"> <a href="https://github.com/modelcontextprotocol/modelcontextprotocol"> <img src="https://img.shields.io/badge/MCP-compatible-brightgreen.svg" alt="MCP Compatible"> </a> </p>

What is Globalping?

Globalping is a free, public API that provides access to a globally distributed network of probes for monitoring, debugging, and benchmarking internet infrastructure. With Globalping, you can run network tests (ping, traceroute, DNS, MTR, HTTP) from thousands of locations worldwide.

What is the Globalping MCP Server?

The Globalping MCP Server implements the Model Context Protocol (MCP), allowing AI models and IDE assistants to interact with Globalping's network measurement capabilities through natural language.

The server supports standard OAuth 2.0 authentication as well as API token authentication for automated workflows.

Key Features

  • 🌐 Global Network Access: Run measurements from thousands of probes worldwide
  • 🤖 AI-Friendly Interface: Any LLM will easily parse the data and run new measurements as needed
  • 📊 Comprehensive Measurements: Support for ping, traceroute, DNS, MTR, and HTTP tests
  • 🔍 Smart Context Handling: Detailed parameter descriptions and semantic tool annotations for intelligent agent routing
  • 🔄 Comparative Analysis: Compare network latency and routing between different targets and geographic locations
  • 🔑 Authentication Support: Use OAuth or an API token with your Globalping account for higher rate limits

Installation

The primary endpoint for all modern MCP integrations is:

https://mcp.globalping.dev/mcp Streamable HTTP

ChatGPT & Codex

Connect Globalping as a remote MCP server in ChatGPT and Codex:

ChatGPT (Web & Desktop)

  1. In ChatGPT, go to SettingsSecurity and login and enable Developer mode (or SettingsFeaturesMCP Servers in ChatGPT Desktop).
  2. Add a new custom connector / MCP server with the endpoint:
text
https://mcp.globalping.dev/mcp
  1. Authenticate via OAuth when prompted.

OpenAI Codex

Add the remote server using the Codex CLI:

bash
codex mcp add globalping --url https://mcp.globalping.dev/mcp

Or add to ~/.codex/config.toml directly:

toml
[mcp_servers.globalping]
url = "https://mcp.globalping.dev/mcp"

Claude (Web, Desktop)

Claude supports remote Streamable HTTP MCP connectors natively without requiring local mcp-remote bridges:

  1. In Claude, navigate to SettingsConnectors (or Organization settingsConnectors for Team/Enterprise accounts).
  2. Click + Add custom connector.
  3. Fill in the connector details:
  • Name: Globalping
  • URL: https://mcp.globalping.dev/mcp

Claude Code

Run the following command in your terminal:

bash
claude mcp add --transport http globalping https://mcp.globalping.dev/mcp

To make Globalping available across all projects on your machine (global user scope) instead of just the current project directory:

bash
claude mcp add -s user --transport http globalping https://mcp.globalping.dev/mcp

Run claude mcp login globalping --no-browser if working over SSH or in a headless terminal to complete the authorization URL exchange manually.

Cursor

Add Globalping to Cursor in one click:

Install MCP Server

Or configure manually in SettingsFeaturesMCP ServersAdd New MCP Server:

  • Type: SSE / HTTP
  • Name: globalping
  • URL: https://mcp.globalping.dev/mcp

Gemini CLI

Globalping is indexed in the official Gemini CLI Extensions Gallery.

Install via the Gemini extension manager:

bash
gemini extensions install https://github.com/jsdelivr/globalping-mcp-server

(Add --auto-update to keep the extension automatically updated).

VS Code & GitHub Copilot

  • Command Palette: Run MCP: Add Server and enter https://mcp.globalping.dev/mcp.

Generic MCP Clients

For any client supporting the standard Streamable HTTP MCP transport, add:

json
{
  "mcpServers": {
    "globalping": {
      "url": "https://mcp.globalping.dev/mcp"
    }
  }
}

Legacy Clients (SSE / stdio fallback): If your client strictly requires SSE over a local process bridge, configure npx mcp-remote https://mcp.globalping.dev/sse.


Authentication

Globalping MCP supports two authentication modes:

  • OAuth 2.0: Handled automatically in interactive clients during connection.
  • API Token: Useful for headless scripts, CI/CD pipelines, or programmatic API clients.

Using a Globalping API Token

  1. Go to dash.globalping.io and generate an API token under Tokens.
  2. Pass the token via standard HTTP headers:
json
{
  "mcpServers": {
    "globalping": {
      "url": "https://mcp.globalping.dev/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_GLOBALPING_API_TOKEN"
      }
    }
  }
}

Programmatic Integration (Anthropic Messages API)

To use Globalping directly with Anthropic's Messages API (MCP Connector), pass the remote server definition in your request payload:

json
{
  "model": "claude-3-7-sonnet-latest",
  "max_tokens": 1024,
  "mcp_servers": [
    {
      "type": "url",
      "name": "globalping",
      "url": "https://mcp.globalping.dev/mcp"
    }
  ],
  "tools": [
    {
      "type": "mcp_toolset",
      "mcp_server_name": "globalping"
    }
  ],
  "messages": [
    {
      "role": "user",
      "content": "Run a traceroute to 1.1.1.1 from Frankfurt and Tokyo."
    }
  ]
}

Available Tools

ToolDescription
pingPerform ICMP/packet ping tests to a destination
tracerouteTrace network routing hops to a target
dnsResolve DNS queries using specific resolvers and record types
mtrRun combined ping and traceroute tests (My Traceroute)
httpExecute HTTP/HTTPS requests from probes worldwide
locationsList available Globalping probe regions and filters
limitsDisplay the current free hourly test allowance and additional credits
getMeasurementRetrieve results of a historical measurement by ID
compareLocationsHelper guide to compare multi-region performance metrics
helpTool reference and syntax documentation
authStatusCheck the current MCP authentication status

Usage Examples

Once connected, run network diagnostics using natural language:

code
Ping google.com from 3 locations in Europe
code
Run a traceroute to github.com from Japan and compare with traceroute from the US
code
Check the DNS resolution of example.com using Google DNS (8.8.8.8)
code
Is jsdelivr.com reachable from China? Test with both ping and HTTP
code
What's the average response time for cloudflare.com across different continents?

Location Specification

Locations can be specified using the location's magic parameter:

  • Continents: EU, NA, AS, AF, OC, SA
  • Country codes: US, DE, JP, PL, BR
  • Cities: London, Tokyo, New York, Warsaw
  • Networks & ASNs: Cloudflare, Google, AS13335, AS15169
  • Cloud regions: aws-us-east-1, gcp-us-central1
  • Combinations: London+UK, Cloudflare+US, AWS+Frankfurt

Troubleshooting and Support

The connector cannot reach the server

  • Use the Streamable HTTP endpoint exactly as shown: https://mcp.globalping.dev/mcp.
  • A 401 Unauthorized response before completing OAuth is expected. Reconnect the integration and finish the browser authorization flow.
  • Use the legacy /sse endpoint only for clients that do not support Streamable HTTP.

Authentication fails or expires

  • Remove and reconnect the integration to start a fresh OAuth flow.
  • For API-token authentication, generate a current token in the Globalping dashboard and send it as Authorization: Bearer YOUR_GLOBALPING_API_TOKEN.
  • Once connected, use the authStatus tool to verify that authentication is active and the limits tool to check the free hourly test allowance and available credits. The displayed rate limit covers free tests only; authenticated users with credits can continue above it by spending one credit per additional test.

Get help or report a problem


Development

code
src/
├── index.ts        # Main entry point & MCP agent definition
├── app.ts          # OAuth web routes
├── api/            # Globalping API client
├── auth/           # Authentication helpers
├── config/         # Configuration & constants
├── lib/            # Utilities
├── mcp/            # MCP tool definitions & handlers
├── types/          # TypeScript interfaces
└── ui/             # OAuth HTML templates

Credentials & Secrets

Store OAuth credentials:

bash
npx wrangler secret put GLOBALPING_CLIENT_ID

For OpenAI plugin-directory domain verification, store the token generated by the submission portal:

bash
npx wrangler secret put OPENAI_APPS_CHALLENGE

The Worker serves this value as plain text from /.well-known/openai-apps-challenge. The route returns 404 until the secret is configured.

KV Storage Setup

For Cloudflare Workers OAuth state management:

  1. Create a KV namespace: npx wrangler kv:namespace create OAUTH_KV
  2. Configure OAUTH_KV inside wrangler.jsonc.

常见问题

io.globalping/mcp 是什么?

连接全球网络测量平台,可从世界任意地点运行网络命令,执行远程观测与连通性测试。

相关 Skills

MCP构建

by anthropics

Universal
热门

聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。

想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。

平台与服务
未扫描175.1k

Slack动图

by anthropics

Universal
热门

面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。

帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。

平台与服务
未扫描175.1k

接口测试套件

by alirezarezvani

Universal
热门

扫描 Next.js、Express、FastAPI、Django REST 的 API 路由,自动生成覆盖鉴权、参数校验、错误码、分页、上传与限流场景的 Vitest 或 Pytest 测试套件。

帮你把API与集成测试自动化跑顺,减少回归漏测;能力全面,尤其适合复杂接口场景的QA团队。

平台与服务
未扫描25.7k

相关 MCP Server

Slack 消息

编辑精选

by Anthropic

热门

Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。

这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。

平台与服务
89.7k

by netdata

热门

io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。

这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。

平台与服务
80.0k

by d4vinci

热门

Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。

这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。

平台与服务
72.9k

评论