We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dsouza-anush/browser-use-heroku'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ping.mdx•710 B
---
title: "Ping"
api: "GET /api/v1/ping"
description: "Check if the server is running and responding"
---
Use this endpoint to check if the server is running and responding. This is the only endpoint that doesn't require authentication.
## Response
A successful response has a 200 status code with an empty JSON object.
<RequestExample>
```python python
import requests
BASE_URL = 'https://api.browser-use.com/api/v1'
response = requests.get(f'{BASE_URL}/ping')
if response.status_code == 200:
print("Server is up and running")
```
```bash curl
curl --request GET \
--url https://api.browser-use.com/api/v1/ping
```
</RequestExample>
<ResponseExample>
```json 200
{}
```
</ResponseExample>