Skip to content

Commit ee33e3f

Browse files
yogesh-chauhanHarness
authored andcommitted
feat: [ML-1358]: add list_connectors tool to "default" toolset (#156)
* feat: [ML-1358]: add list_connectors tool to "default" toolset
1 parent f88ce7e commit ee33e3f

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ Toolset Name: `default`
4646

4747
- `get_connector_details`: Get details of a specific connector
4848
- `list_connector_catalogue`: List the Harness connector catalogue
49+
- `list_connectors`: List connectors with filtering options
4950
- `list_pipelines`: List pipelines in a repository
5051
- `get_pipeline`: Get details of a specific pipeline
5152
- `get_execution`: Get details of a specific pipeline execution
@@ -102,6 +103,7 @@ Toolset Name: `connectors`
102103

103104
- `list_connector_catalogue`: List the Harness connector catalogue
104105
- `get_connector_details`: Get details of a specific connector
106+
- `list_connectors`: List connectors with filtering options
105107

106108
#### Repositories Toolset
107109

pkg/harness/tools.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,7 @@ func RegisterDefault(config *config.Config, tsg *toolsets.ToolsetGroup) error {
428428
// Connector Management tools
429429
toolsets.NewServerTool(tools.GetConnectorDetailsTool(config, connectorServiceClient)),
430430
toolsets.NewServerTool(tools.ListConnectorCatalogueTool(config, connectorServiceClient)),
431+
toolsets.NewServerTool(tools.ListConnectorsTool(config, connectorServiceClient)),
431432

432433
// Pipeline Management tools
433434
toolsets.NewServerTool(tools.ListPipelinesTool(config, pipelineServiceClient)),

0 commit comments

Comments
 (0)