MCP Gateway
ApiDashboard

Get dashboard activity

Get standalone activity feed for filter-only updates without reloading the entire dashboard.

GET
/api/v1/dashboard/activity

Authorization

User API Key
AuthorizationBearer <token>

User API key (mgw_usr_live_* or mgw_usr_test_*)

In: header

Query Parameters

activity_filter?string

Filter: all, tools, errors, or admin

Default"all"
Value in"all" | "tools" | "errors" | "admin"
access_token?|

Response Body

application/json

application/json

curl -X GET "https://loading/api/v1/dashboard/activity"
{
  "activity": [
    {
      "type": "server_created",
      "description": "string",
      "details": {
        "property1": "string",
        "property2": "string"
      },
      "server": "string",
      "tool": "string",
      "user": "string",
      "timestamp": "2019-08-24T14:15:22Z",
      "severity": "info",
      "latency_ms": 0,
      "status": "string"
    }
  ],
  "filter": "all",
  "generated_at": "2019-08-24T14:15:22Z"
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}