Remote MCP server that gives LLMs access to run network commands
SaferSkills independently audited Globalping Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
<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>
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 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.
The remote MCP server is available under these endpoints:
https://mcp.globalping.dev/mcphttps://mcp.globalping.dev/sseYou 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:
gemini extensions install https://github.com/jsdelivr/globalping-mcp-serverThis 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-remote bridge.{
"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:
GlobalpingRun network tests from locations worldwidehttps://mcp.globalping.dev/mcp (Streamable HTTP transport) or https://mcp.globalping.dev/sse (SSE transport)#### Cursor
To add the Globalping MCP server to Cursor:
mcp.json config 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"
]
}
}
}The Globalping MCP server supports two authentication methods:
Both methods provide higher rate limits and priority access to the probe network.
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
#### 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"
]
}
}
}You can use our MCP server with any MCP-compatible AI assistant, including:
See your tool's 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 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?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/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 templatesAdd Globalping OAuth credentials:
npx wrangler secret put GLOBALPING_CLIENT_IDUsed for OAuthProvider docs https://github.com/cloudflare/workers-oauth-provider
OAUTH_KVkv_namespaces in the wrangler.jsonc file~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.