get-signals
Retrieve signals from Seq MCP Server using owner ID, shared/private filters, and partial matches for targeted event monitoring and analysis.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ownerId | No | Owner ID to filter signals by | |
partial | No | Whether to include partial signal matches | |
shared | No | Whether to include only shared signals (true) or private signals (false) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ownerId": {
"description": "Owner ID to filter signals by",
"type": "string"
},
"partial": {
"description": "Whether to include partial signal matches",
"type": "boolean"
},
"shared": {
"description": "Whether to include only shared signals (true) or private signals (false)",
"type": "boolean"
}
},
"type": "object"
}