refactor(toolsets): renamed Profile to Toolset (#309)

As a prior step to providing support for toolsets
this change repurposes the current work in profiles
which partially aligns with the toolsets expected features

Signed-off-by: Marc Nuri <marc@marcnuri.com>
This commit is contained in:
Marc Nuri
2025-09-11 09:25:09 +02:00
committed by GitHub
parent 467e7e6757
commit 10c82f7bff
8 changed files with 84 additions and 84 deletions

View File

@@ -87,7 +87,7 @@ func (c *httpContext) beforeEach(t *testing.T) {
}
c.StaticConfig.Port = fmt.Sprintf("%d", ln.Addr().(*net.TCPAddr).Port)
mcpServer, err := mcp.NewServer(mcp.Configuration{
Profile: mcp.Profiles[0],
Toolset: mcp.Toolsets[0],
StaticConfig: c.StaticConfig,
})
if err != nil {