You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add to your Claude Desktop configuration file (located at `%APPDATA%\Claude\config.json` on Windows or `~/Library/Application Support/Claude/config.json` on macOS):
71
71
72
-
Streamable HTTP transport:
73
-
```json
74
-
{
75
-
"mcpServers": {
76
-
"globalping": {
77
-
"command": "npx",
78
-
"args": [
79
-
"mcp-remote",
80
-
"https://mcp.globalping.dev/mcp"
81
-
]
82
-
}
83
-
}
84
-
}
85
-
```
86
-
Legacy SSE transport:
72
+
> [!note]
73
+
> Claude Desktop natively supports only stdio transport for local MCP servers.
74
+
> For remote MCP servers, use the `mcp-remote` bridge.
75
+
87
76
```json
88
77
{
89
78
"mcpServers": {
@@ -115,20 +104,16 @@ When creating a Claude Assistant in the Anthropic Console:
115
104
To add the Globalping MCP server to Cursor:
116
105
117
106
1. Open Cursor settings
118
-
2. Navigate to the MCP tab
119
-
3. Click on "+ Add new global MCP server"
107
+
2. Navigate to the Tools & MCP tab
108
+
3. Click on "+ New MCP server"
120
109
4. This opens the `mcp.json` config file, where you will need to add:
121
110
122
111
Streamable HTTP transport:
123
112
```json
124
113
{
125
114
"mcpServers": {
126
115
"globalping": {
127
-
"command": "npx",
128
-
"args": [
129
-
"mcp-remote",
130
-
"https://mcp.globalping.dev/mcp"
131
-
]
116
+
"url": "https://mcp.globalping.dev/mcp"
132
117
}
133
118
}
134
119
}
@@ -147,7 +132,7 @@ Legacy SSE transport:
147
132
}
148
133
}
149
134
```
150
-
5.Click "Save" and restart Cursor
135
+
5. Save and restart Cursor
151
136
## Authentication
152
137
153
138
The Globalping MCP server supports two authentication methods:
@@ -162,9 +147,9 @@ The server automatically detects when an API token is provided in the Authorizat
0 commit comments