Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
ddca3cd
feat: add first draft cs mcp server
siherrmann May 21, 2026
bf7304f
fix: add cs-mcp to gitignore
siherrmann May 21, 2026
b8dcc59
fix: fix env var names in readme
siherrmann May 22, 2026
4929a08
update: clean up workspace structs
siherrmann May 29, 2026
88b82bf
update: add mcp server to the main cs-go cli
siherrmann Jun 11, 2026
406371b
update: remove mcp readme, add long mcp cmd description, remove old b…
siherrmann Jun 16, 2026
876170b
update: update file name of the main mcp file
siherrmann Jun 16, 2026
7d8a168
Merge branch 'main' into cs-mcp
siherrmann Jun 16, 2026
f5e87c6
chore(docs): Auto-update docs and licenses
siherrmann Jun 16, 2026
bad91ba
fix: fix dependency error
siherrmann Jun 16, 2026
f861494
Merge branch 'cs-mcp' of https://github.com/codesphere-cloud/cs-go in…
siherrmann Jun 16, 2026
aebd920
fix: fix dependecy issue
siherrmann Jun 16, 2026
d342b94
fix: fix mcp by updating api client and wrapping lists in item map
siherrmann Jun 25, 2026
93c13d7
Merge branch 'main' into cs-mcp
siherrmann Jun 25, 2026
527f40e
chore(docs): Auto-update docs and licenses
siherrmann Jun 25, 2026
914df6e
update: update openapi generated client
siherrmann Jun 26, 2026
d2f8a39
Merge branch 'cs-mcp' of https://github.com/codesphere-cloud/cs-go in…
siherrmann Jun 26, 2026
687acd5
Merge branch 'main' into cs-mcp
siherrmann Jun 26, 2026
fb24258
feat: add stop pipeline command
siherrmann Jul 6, 2026
ffe5a06
fix: fix formatting
siherrmann Jul 6, 2026
f4aac24
chore(docs): Auto-update docs and licenses
siherrmann Jul 6, 2026
a8bbadf
Merge branch 'main' into cs-mcp
siherrmann Jul 6, 2026
ab3bfc3
chore(docs): Auto-update docs and licenses
siherrmann Jul 6, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,9 @@ License URL: https://github.com/jbenet/go-context/blob/d14ea06fba99/LICENSE

----------
Module: github.com/jedib0t/go-pretty/v6
Version: v6.8.1
Version: v6.8.2
License: MIT
License URL: https://github.com/jedib0t/go-pretty/blob/v6.8.1/LICENSE
License URL: https://github.com/jedib0t/go-pretty/blob/v6.8.2/LICENSE

----------
Module: github.com/json-iterator/go
Expand Down Expand Up @@ -503,9 +503,9 @@ License URL: https://cs.opensource.google/go/x/time/+/v0.15.0:LICENSE

----------
Module: golang.org/x/tools
Version: v0.46.0
Version: v0.47.0
License: BSD-3-Clause
License URL: https://cs.opensource.google/go/x/tools/+/v0.46.0:LICENSE
License URL: https://cs.opensource.google/go/x/tools/+/v0.47.0:LICENSE

----------
Module: google.golang.org/protobuf
Expand Down
14 changes: 7 additions & 7 deletions api/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,30 +87,30 @@ func (c *Client) ListDataCenters() ([]DataCenter, error) {
}

func (c *Client) ListDomains(teamId int) ([]Domain, error) {
domains, r, err := c.api.DomainsAPI.DomainsListDomains(c.ctx, float32(teamId)).Execute()
domains, r, err := c.api.DomainsAPI.DomainsListDomains(c.ctx, teamId).Execute()
return domains, errors.FormatAPIError(r, err)
}

func (c *Client) GetDomain(teamId int, domainName string) (*Domain, error) {
domain, r, err := c.api.DomainsAPI.DomainsGetDomain(c.ctx, float32(teamId), domainName).Execute()
domain, r, err := c.api.DomainsAPI.DomainsGetDomain(c.ctx, teamId, domainName).Execute()
return domain, errors.FormatAPIError(r, err)
}

func (c *Client) CreateDomain(teamId int, domainName string) (*Domain, error) {
domain, r, err := c.api.DomainsAPI.DomainsCreateDomain(c.ctx, float32(teamId), domainName).Execute()
domain, r, err := c.api.DomainsAPI.DomainsCreateDomain(c.ctx, teamId, domainName).Execute()
return domain, errors.FormatAPIError(r, err)
}

func (c *Client) DeleteDomain(teamId int, domainName string) error {
r, err := c.api.DomainsAPI.DomainsDeleteDomain(c.ctx, float32(teamId), domainName).Execute()
r, err := c.api.DomainsAPI.DomainsDeleteDomain(c.ctx, teamId, domainName).Execute()
return errors.FormatAPIError(r, err)
}

func (c *Client) UpdateDomain(
teamId int, domainName string, args UpdateDomainArgs,
) (*Domain, error) {
domain, r, err := c.api.DomainsAPI.
DomainsUpdateDomain(c.ctx, float32(teamId), domainName).
DomainsUpdateDomain(c.ctx, teamId, domainName).
DomainsUpdateDomainRequest(args).
Execute()
return domain, errors.FormatAPIError(r, err)
Expand All @@ -120,7 +120,7 @@ func (c *Client) VerifyDomain(
teamId int, domainName string,
) (*DomainVerificationStatus, error) {
status, r, err := c.api.DomainsAPI.
DomainsVerifyDomain(c.ctx, float32(teamId), domainName).Execute()
DomainsVerifyDomain(c.ctx, teamId, domainName).Execute()
return status, errors.FormatAPIError(r, err)
}

Expand All @@ -136,7 +136,7 @@ func (c *Client) UpdateWorkspaceConnections(
req[path] = ids
}
domain, r, err := c.api.DomainsAPI.
DomainsUpdateWorkspaceConnections(c.ctx, float32(teamId), domainName).
DomainsUpdateWorkspaceConnections(c.ctx, teamId, domainName).
RequestBody(req).Execute()
return domain, errors.FormatAPIError(r, err)
}
Expand Down
2 changes: 1 addition & 1 deletion api/openapi_client/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.22.0
7.23.0
Loading
Loading