curl --request GET \
--url https://api.example.com/api/mcp-status/failed \
--header 'x-api-key: <api-key>'import requests
url = "https://api.example.com/api/mcp-status/failed"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.example.com/api/mcp-status/failed', 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://api.example.com/api/mcp-status/failed",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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://api.example.com/api/mcp-status/failed"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/api/mcp-status/failed")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/mcp-status/failed")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"op": "<string>",
"error": "<string>",
"local_only": false,
"reachable": true,
"results": [
{
"name": "<string>",
"outcome": "applied",
"detail": "<string>",
"error": "<string>",
"payload": null
}
]
}
}{
"error": "<string>",
"code": "<string>"
}List MCP servers skipped by the viability check
List MCP servers skipped due to a failed viability check (server down or
slow at boot or last reload). Use reload_mcp to re-attach one once healthy.
Each entry is {"title": <name>, "status": "unavailable"} — title plus a
coarse status only. A query op rides the same fan-out primitive as a mutation:
every worker’s list arrives as its per-worker payload in the fleet report
(this worker’s list on its own self entry); targets optionally restricts the
query to specific workers.
curl --request GET \
--url https://api.example.com/api/mcp-status/failed \
--header 'x-api-key: <api-key>'import requests
url = "https://api.example.com/api/mcp-status/failed"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.example.com/api/mcp-status/failed', 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://api.example.com/api/mcp-status/failed",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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://api.example.com/api/mcp-status/failed"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/api/mcp-status/failed")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/mcp-status/failed")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"op": "<string>",
"error": "<string>",
"local_only": false,
"reachable": true,
"results": [
{
"name": "<string>",
"outcome": "applied",
"detail": "<string>",
"error": "<string>",
"payload": null
}
]
}
}{
"error": "<string>",
"code": "<string>"
}Authorizations
Query Parameters
Restrict the listing to these worker names; repeat the parameter per worker, omit for the fleet.
Response
Success.
The awaited result of one :meth:WorkerBus.publish.
Two honest shapes. Reachable (reachable=True): results holds, per worker,
the expected workers' verdicts (the synthesized self entry included) AND the gap
rows (resyncing / recycling / stale) for rows that failed the ready+
fresh gate — each carried as its actual condition rather than dropped.
Bus-unreachable (reachable=False): the transport failed before any worker
could reply, so there is NO worker list — only error. local_only marks
the result of the no-op :meth:WorkerBus.local variant.
Show child attributes
Show child attributes

