
Globalping
OfficialRuns network diagnostic tests (ping, traceroute, DNS, HTTP) from thousands of worldwide locations through Cloudflare Workers. Helps troubleshoot connectivity issues and analyze network performance globally.
Provides global network diagnostics through Cloudflare Workers, enabling engineers to run tests like ping, traceroute, and HTTP requests from worldwide locations for troubleshooting connectivity issues and analyzing network performance.
What it does
- Run ping tests from global probe locations
- Perform traceroute analysis worldwide
- Execute DNS lookups from multiple regions
- Test HTTP requests from distributed locations
- Compare network performance between targets
- Access thousands of measurement probes globally
Best for
About Globalping
Globalping is an official MCP server published by jsdelivr that provides AI assistants with tools and capabilities via the Model Context Protocol. Run a ping test worldwide with Globalping. Diagnose connectivity issues using Cloudflare Workers for accurate network tr It is categorized under developer tools.
How to install
You can install Globalping in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server supports remote connections over HTTP, so no local installation is required.
License
Globalping is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Globalping MCP Server
Enable AI models to interact with a global network measurement platform through natural language. Give network access to any LLM.
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 like OpenAI's GPT and Anthropic's Claude to interact with Globalping's network measurement capabilities through natural language.
It also supports two authentication methods: OAuth and API token authentication. Both methods offer a secure way to interact with our API and provide higher rate limits associated with your account.
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: Provides detailed parameter descriptions for AI clients to intelligently select measurement types and options
- ๐ Comparative Analysis: Allows to compare network performance between different targets
- ๐ Authentication Support: Use OAuth or API token with your Globalping account for higher rate limits
Installation
The remote MCP server is available under these endpoints:
- Streamable HTTP transport:
https://mcp.globalping.dev/mcp - SSE transport:
https://mcp.globalping.dev/sse
You can integrate our Globalping MCP server with various AI tools that support the Model Context Protocol.
Here are instructions for the top 3 most popular tools:
Gemini CLI
To add the Globalping MCP server to Gemini CLI:
- Ensure you have the Gemini CLI installed.
- Run the following command:
gemini extensions install https://github.com/jsdelivr/globalping-mcp-server
This will automatically configure the server with OAuth authentication enabled. You will be prompted to log in when you first use the extension.
Note: If you prefer to use a Globalping API token (for higher rate limits or automation), you can manually add the server with the Authorization header instead of using the extension installer:
gemini mcp add globalping https://mcp.globalping.dev/mcp --header "Authorization: Bearer YOUR_TOKEN"
Claude Desktop App
Add to your Claude Desktop configuration file (located at %APPDATA%\Claude\config.json on Windows or ~/Library/Application Support/Claude/config.json on macOS):
[!note] Claude Desktop natively supports only stdio transport for local MCP servers. For remote MCP servers, use the
mcp-remotebridge.
{
"mcpServers": {
"globalping": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.globalping.dev/sse"
]
}
}
}
Anthropic Claude API (via Console)
When creating a Claude Assistant in the Anthropic Console:
- Go to console.anthropic.com
- Navigate to the Assistants section
- Create a new Assistant or edit an existing one
- In the Tools section, select "Add custom tool"
- Enter the following details:
- Tool Name:
Globalping - Description:
Run network tests from locations worldwide - Tool URL:
https://mcp.globalping.dev/mcp(Streamable HTTP transport) orhttps://mcp.globalping.dev/sse(SSE transport)
- Tool Name:
Cursor
To add the Globalping MCP server to Cursor:
- Open Cursor settings
- Navigate to the Tools & MCP tab
- Click on "+ New MCP server"
- This opens the
mcp.jsonconfig file, where you will need to add:
Streamable HTTP transport:
{
"mcpServers": {
"globalping": {
"url": "https://mcp.globalping.dev/mcp"
}
}
}
Legacy SSE transport:
{
"mcpServers": {
"globalping": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.globalping.dev/sse"
]
}
}
}
- Save and restart Cursor
Authentication
The Globalping MCP server supports two authentication methods:
- OAuth Authentication: Automatically handled by the server for secure access
- API Token Authentication: Manual token configuration via Authorization header
Both methods provide higher rate limits and priority access to the probe network.
Using Globalping API Token
The server automatically detects when an API token is provided in the Authorization header and uses it for authentication instead of OAuth.
Getting Your API Token
- Visit dash.globalping.io
- Sign in to your account
- Navigate to Tokens to generate a new API token
Configuration with Authentication
Streamable HTTP transport:
{
"mcpServers": {
"globalping": {
"url": "https://mcp.globalping.dev/mcp",
"headers": {
"Authorization": "Bearer YOUR_GLOBALPING_API_TOKEN"
}
}
}
}
Legacy SSE transport:
{
"mcpServers": {
"globalping": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.globalping.dev/sse",
"--header",
"Authorization: Bearer YOUR_GLOBALPING_API_TOKEN"
]
}
}
}
Connecting AI Assistants
You can use our MCP server with any MCP-compatible AI assistant, including:
- Claude Desktop
- Anthropic Assistants
- Cursor
- Windsurf
- Any custom implementation of the MCP protocol
See your tool's MCP documentation for details on connecting clients to this server.
Available Tools
ping- Perform a ping test to a targettraceroute- Perform a traceroute test to a targetdns- Perform a DNS lookup for a domainmtr- Perform an MTR (My Traceroute) test to a targethttp- Perform an HTTP request to a URLlocations- List all available Globalping probe locationslimits- Show your current rate limits for the Globalping APIgetMeasurement- Retrieve a previously run measurement by IDcompareLocations- Guide on how to run comparison measurementshelp- Show a help message with documentation on available tools
Usage Examples
Once connected to an AI model through a compatible MCP client, you can interact with Globalping using natural language:
Ping google.com from 3 locations in Europe
Run a traceroute to github.com from Japan and compare with traceroute from the US
Check the DNS resolution of example.com using Google DNS (8.8.8.8)
Is jsdelivr.com reachable from China? Test with both ping and HTTP
What's the average response time for cloudflare.com across different continents?
Location Specification
Locations can be specified using the "magic" field, which supports various formats:
- Continent codes: "EU", "NA", "AS", etc.
- Country codes: "US", "DE", "JP", etc.
- City names: "London", "Tokyo", "New York", etc.
- Network names: "Cloudflare", "Google", etc.
- ASN numbers: "AS13335", "AS15169", etc.
- Cloud provider regions: "aws-us-east-1", "gcp-us-central1", etc.
You can also combine these with a plus sign for more specific targeting: "London+UK", "Cloudflare+US", etc.
Development
The codebase is organized into modules:
src/index.ts- Main entry point and MCP agent definitionsrc/app.ts- OAuth web routessrc/api- Globalping API clientsrc/auth- Authentication utilitiessrc/config- Configuration and constantssrc/lib- Utility functionssrc/mcp- MCP tool handlerssrc/types- TypeScript type definitionssrc/ui- HTML templates
Add Globalping credentials
Add Globalping OAuth credentials:
npx wrangler secret put GLOBALPING_CLIENT_ID
KV storage
Used for OAuthProvider docs https://github.com/cloudflare/workers-oauth-provider
- create a KV namespace and copy ID
- binding for it must be
OAUTH_KV - configure
kv_namespacesin thewrangler.jsoncfile
Alternatives
Related Skills
Browse all skillsUI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.
Guide for building TypeScript CLIs with Bun. Use when creating command-line tools, adding subcommands to existing CLIs, or building developer tooling. Covers argument parsing, subcommand patterns, output formatting, and distribution.
Use when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.
Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.
Integrate Vercel AI SDK applications with You.com tools (web search, AI agent, content extraction). Use when developer mentions AI SDK, Vercel AI SDK, generateText, streamText, or You.com integration with AI SDK.
Use when building MCP servers or clients that connect AI systems with external tools and data sources. Invoke for MCP protocol compliance, TypeScript/Python SDKs, resource providers, tool functions.