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/tools/listDeployments.ts
+35-29Lines changed: 35 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -10,62 +10,68 @@ export function registerListDeploymentsTool(server: McpServer) {
10
10
`List deployments in a space
11
11
12
12
This tool lists deployments in a given space. The space name is required. When requesting latest deployment consider which deployment state the user is interested in (successful or all). Optional filters include: projects (array of project IDs), environments (array of environment IDs), tenants (array of tenant IDs), channels (array of channel IDs), taskState (one of: Canceled, Cancelling, Executing, Failed, Queued, Success, TimedOut), and take (number of results to return).`,
Copy file name to clipboardExpand all lines: src/tools/listEnvironments.ts
+24-14Lines changed: 24 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -10,33 +10,43 @@ export function registerListEnvironmentsTool(server: McpServer) {
10
10
`List environments in a space
11
11
12
12
This tool lists all environments in a given space. The space name is required. Use this tool as early as possible to understand which environments are configured. Optionally filter by partial name match using partialName parameter.`,
Copy file name to clipboardExpand all lines: src/tools/listProjects.ts
+28-18Lines changed: 28 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -9,37 +9,47 @@ export function registerListProjectsTool(server: McpServer) {
9
9
server.tool(
10
10
"list_projects",
11
11
`This tool lists all projects in a given space. ${projectsDescription} The space name is required, if you can't find the space name, ask the user directly for the name of the space. Optionally filter by partial name match using partialName parameter.`,
0 commit comments