Network access with the ability to run commands like ping, traceroute, mtr, http, dns resolve.
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.
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 oAuth authentication, which offers a secure way to interact with our API and benefits from higher rate limits associated with your account.
The remote MCP server is available under these endpoints:
https://mcp.globalping.dev/mcp
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:
Add to your Claude Desktop configuration file (located at %APPDATA%\Claude\config.json
on Windows or ~/Library/Application Support/Claude/config.json
on macOS):
Streamable HTTP transport:
{
"mcpServers": {
"globalping": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.globalping.dev/mcp"
]
}
}
}
Legacy SSE transport:
{
"mcpServers": {
"globalping": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.globalping.dev/sse"
]
}
}
}
When creating a Claude Assistant in the Anthropic Console:
Globalping
Run network tests from locations worldwide
https://mcp.globalping.dev/mcp
(Streamable HTTP transport) or https://mcp.globalping.dev/sse
(SSE transport)To add the Globalping MCP server to Cursor:
mcp.json
config file, where you will need to add:Streamable HTTP transport:
{
"mcpServers": {
"globalping": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.globalping.dev/mcp"
]
}
}
}
Legacy SSE transport:
{
"mcpServers": {
"globalping": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.globalping.dev/sse"
]
}
}
}
This MCP server can be used with any MCP-compatible AI assistant, including:
See the MCP documentation for details on connecting clients to this server.
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 toolsOnce 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?
Locations can be specified using the "magic" field, which supports various formats:
You can also combine these with a plus sign for more specific targeting: "London+UK", "Cloudflare+US", etc.
The codebase is organized into modules:
src/index.ts
- Main entry point and MCP agent definitionsrc/globalping/types.ts
- TypeScript interfaces for the Globalping APIsrc/globalping/api.ts
- API wrapper functions for Globalpingsrc/globalping/tools.ts
- MCP tool implementationssrc/utils.ts
- Helper utilities for rendering the web UIAdd Globalping OAuth credentials:
npx wrangler secret put GLOBALPING_CLIENT_ID
Used for OAuthProvider
docs https://github.com/cloudflare/workers-oauth-provider
OAUTH_KV
kv_namespaces
in the wrangler.jsonc
fileA server for interacting with the Beeper communication network.
Connect to any function, any language, across network boundaries using AgentRPC.
An MCP server for collecting interactive user feedback through a graphical user interface.
A unified interface for various chat AI models including OpenAI, MistralAI, Anthropic, and Google AI, requiring vendor API keys.
Send emails via SMTP. Requires SMTP server credentials to be configured through environment variables.
Connects AI agents to the Feishu/Lark platform via its OpenAPI to automate tasks like document processing, conversation management, and calendar scheduling.
Connects AI models to WhatsApp Web using the Model Context Protocol (MCP) to automate and enhance interactions.
Interact with Hacker News through the Model Context Protocol (MCP), designed for Claude Desktop.
Provides standardized access to social platform and onchain data using the Neynar API.
A server for text-to-speech generation using the AivisSpeech engine.