You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/cmd/root.go
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -136,15 +136,23 @@ var rootCmd = &cobra.Command{
136
136
137
137
// Register Domains
138
138
s.AddTool(
139
-
mcp.NewTool("domains", mcp.WithDescription("Get all the domains in the opslevel account. Domains are objects in opslevel that represent a top-level abstraction used to organize and categorize software systems.")),
139
+
mcp.NewTool("domains", mcp.WithDescription(
140
+
`Get all the domains in the opslevel account.
141
+
Domains are comprised of child Systems which contain Components.
142
+
Used to represent large business units or verticals within OpsLevel.
mcp.NewTool("systems", mcp.WithDescription("Get all the systems in the opslevel account. Systems are objects in opslevel that represent a grouping of services or components that act together to serve a business function or process.")),
151
+
mcp.NewTool("systems", mcp.WithDescription(
152
+
`Get all the systems in the opslevel account.
153
+
Systems are made up of Components that combine to form a unified whole or function.
154
+
eg a “Checkout” System that combines a cart and payment component.
0 commit comments