Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ActionDetail ¶ added in v0.8.0
type ActionDetail struct {
ActionType string `json:"actionType"`
Label string `json:"label"`
Description string `json:"description"`
Fields map[string]string `json:"requiredFields,omitempty"`
}
ActionDetail holds a single action's metadata for display.
type ProtocolDetail ¶ added in v0.8.0
type ProtocolDetail struct {
Name string `json:"name"`
Actions []ActionDetail `json:"actions"`
}
ProtocolDetail holds a protocol name and its actions for the get command.
type SchemaAction ¶ added in v0.8.0
type SchemaAction struct {
ActionType string `json:"actionType"`
Label string `json:"label"`
Description string `json:"description"`
Category string `json:"category"`
Integration string `json:"integration"`
}
SchemaAction represents a single action from the schemas API.
type SchemasResponse ¶
type SchemasResponse struct {
Actions map[string]SchemaAction `json:"actions"`
}
SchemasResponse is the shape of the /api/mcp/schemas response.
Click to show internal directories.
Click to hide internal directories.