Get MCP Server Card
curl --request GET \
--url https://mcp.arlohealth.ai/.well-known/mcp.jsonimport requests
url = "https://mcp.arlohealth.ai/.well-known/mcp.json"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://mcp.arlohealth.ai/.well-known/mcp.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://mcp.arlohealth.ai/.well-known/mcp.json",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://mcp.arlohealth.ai/.well-known/mcp.json"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://mcp.arlohealth.ai/.well-known/mcp.json")
.asString();require 'uri'
require 'net/http'
url = URI("https://mcp.arlohealth.ai/.well-known/mcp.json")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"name": "arlo-health",
"version": "1.0.0",
"description": "<string>",
"publisher": {
"name": "<string>",
"url": "<string>"
},
"capabilities": {
"tools": {
"listChanged": true
},
"resources": {},
"prompts": {}
},
"tools": [
{
"name": "<string>",
"description": "<string>",
"annotations": {
"readOnlyHint": true,
"destructiveHint": true,
"idempotentHint": true,
"openWorldHint": true
}
}
],
"transport": {
"type": "streamable-http",
"url": "<string>"
},
"authentication": {
"type": "oauth2",
"metadata_url": "<string>"
},
"categories": [
"<string>"
],
"documentation": {
"agents": "<string>",
"llms": "<string>"
}
}Discovery
Get MCP Server Card
Returns the MCP Server Card for auto-discovery. Contains server capabilities, tool list, and authentication info.
GET
/
.well-known
/
mcp.json
Get MCP Server Card
curl --request GET \
--url https://mcp.arlohealth.ai/.well-known/mcp.jsonimport requests
url = "https://mcp.arlohealth.ai/.well-known/mcp.json"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://mcp.arlohealth.ai/.well-known/mcp.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://mcp.arlohealth.ai/.well-known/mcp.json",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://mcp.arlohealth.ai/.well-known/mcp.json"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://mcp.arlohealth.ai/.well-known/mcp.json")
.asString();require 'uri'
require 'net/http'
url = URI("https://mcp.arlohealth.ai/.well-known/mcp.json")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"name": "arlo-health",
"version": "1.0.0",
"description": "<string>",
"publisher": {
"name": "<string>",
"url": "<string>"
},
"capabilities": {
"tools": {
"listChanged": true
},
"resources": {},
"prompts": {}
},
"tools": [
{
"name": "<string>",
"description": "<string>",
"annotations": {
"readOnlyHint": true,
"destructiveHint": true,
"idempotentHint": true,
"openWorldHint": true
}
}
],
"transport": {
"type": "streamable-http",
"url": "<string>"
},
"authentication": {
"type": "oauth2",
"metadata_url": "<string>"
},
"categories": [
"<string>"
],
"documentation": {
"agents": "<string>",
"llms": "<string>"
}
}Response
200 - application/json
MCP Server Card
MCP Server Card for capability discovery
Example:
"arlo-health"
Example:
"1.0.0"
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?
⌘I