Globalping
OfficialIntegrates with Cloudflare for OAuth authentication and Workers platform to deploy the MCP server
Mentioned as a testable service through Globalping's network measurement tools
Allows GPT models to access Globalping's network testing capabilities through natural language interactions
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Globalpingrun a ping test to google.com from Tokyo"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Globalping MCP Server
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.
Related MCP server: mcp-llm
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)
In ChatGPT, go to Settings ā Security and login and enable Developer mode (or Settings ā Features ā MCP Servers in ChatGPT Desktop).
Add a new custom connector / MCP server with the endpoint:
https://mcp.globalping.dev/mcpAuthenticate via OAuth when prompted.
OpenAI Codex
Add the remote server using the Codex CLI:
codex mcp add globalping --url https://mcp.globalping.dev/mcpOr add to ~/.codex/config.toml directly:
[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:
In Claude, navigate to Settings ā Connectors (or Organization settings ā Connectors for Team/Enterprise accounts).
Click + Add custom connector.
Fill in the connector details:
Name:
GlobalpingURL:
https://mcp.globalping.dev/mcp
Claude Code
Run the following command in your terminal:
claude mcp add --transport http globalping https://mcp.globalping.dev/mcpTo make Globalping available across all projects on your machine (global user scope) instead of just the current project directory:
claude mcp add -s user --transport http globalping https://mcp.globalping.dev/mcpRun 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:
Or configure manually in Settings ā Features ā MCP Servers ā Add New MCP Server:
Type:
SSE / HTTPName:
globalpingURL:
https://mcp.globalping.dev/mcp
Gemini CLI
Globalping is indexed in the official Gemini CLI Extensions Gallery.
Install via the Gemini extension manager:
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 Serverand enterhttps://mcp.globalping.dev/mcp.
Generic MCP Clients
For any client supporting the standard Streamable HTTP MCP transport, add:
{
"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
Go to dash.globalping.io and generate an API token under Tokens.
Pass the token via standard HTTP headers:
{
"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:
{
"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
Tool | Description |
| Perform ICMP/packet ping tests to a destination |
| Trace network routing hops to a target |
| Resolve DNS queries using specific resolvers and record types |
| Run combined ping and traceroute tests (My Traceroute) |
| Execute HTTP/HTTPS requests from probes worldwide |
| List available Globalping probe regions and filters |
| Display current API quota and usage limits |
| Retrieve results of a historical measurement by ID |
| Helper guide to compare multi-region performance metrics |
| Tool reference and syntax documentation |
| Check the current MCP authentication status |
Usage Examples
Once connected, run network diagnostics using natural language:
Ping google.com from 3 locations in EuropeRun a traceroute to github.com from Japan and compare with traceroute from the USCheck the DNS resolution of example.com using Google DNS (8.8.8.8)Is jsdelivr.com reachable from China? Test with both ping and HTTPWhat'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,SACountry codes:
US,DE,JP,PL,BRCities:
London,Tokyo,New York,WarsawNetworks & ASNs:
Cloudflare,Google,AS13335,AS15169Cloud regions:
aws-us-east-1,gcp-us-central1Combinations:
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 Unauthorizedresponse before completing OAuth is expected. Reconnect the integration and finish the browser authorization flow.Use the legacy
/sseendpoint 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
authStatustool to verify that authentication is active and thelimitstool to check the available quota.
Get help or report a problem
For usage questions and reproducible bugs, open a GitHub issue.
For security-sensitive reports, use GitHub's private Report a vulnerability form. Do not include credentials or sensitive data in a public issue.
Globalping's Privacy Policy and Terms of Use apply to this service.
Development
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 templatesCredentials & Secrets
Store OAuth credentials:
npx wrangler secret put GLOBALPING_CLIENT_IDFor OpenAI plugin-directory domain verification, store the token generated by the submission portal:
npx wrangler secret put OPENAI_APPS_CHALLENGEThe 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:
Create a KV namespace:
npx wrangler kv:namespace create OAUTH_KVConfigure
OAUTH_KVinsidewrangler.jsonc.
This server cannot be installed
Maintenance
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
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
MCP server for AI dialogue using various LLM models via AceDataCloud
Remote MCP server for supportsheep: run AI interviews and manage support content for your blog.
Related MCP Servers
- MIT
- MIT
- FlicenseNot gradedqualityNot gradedmaintenanceA secure and pluggable MCP server to run terminal commands on your local machine or cloud server ā remotely, safely, and with LLMs or agentic clients.
- AlicenseAqualityCmaintenanceA lightweight MCP server bridging AI agents to Google's Gemini AI via official CLI394MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/jsdelivr/globalping-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server