stream_mcp_events
Track real-time MCPfinder registry events, including tool registrations, updates, and status changes, within a specified duration or timestamp.
Instructions
Monitor real-time events from the MCPfinder registry including new tool registrations, updates, and status changes. Returns a summary of events received during the monitoring period.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | No | Duration in seconds to stream events (default: 30, max: 120). | |
filter | No | Event types to filter: tool.registered, tool.updated, tool.status_changed. | |
since | No | ISO timestamp to get events from (default: 1 hour ago). |
Input Schema (JSON Schema)
{
"properties": {
"duration": {
"description": "Duration in seconds to stream events (default: 30, max: 120).",
"type": "number"
},
"filter": {
"description": "Event types to filter: tool.registered, tool.updated, tool.status_changed.",
"items": {
"type": "string"
},
"type": "array"
},
"since": {
"description": "ISO timestamp to get events from (default: 1 hour ago).",
"type": "string"
}
},
"required": [],
"type": "object"
}