generated from wesen/wesen-go-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from wesen/task/rename-go-go-mcp
Merge client and server into single binary
- Loading branch information
Showing
59 changed files
with
263 additions
and
11,273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package cmds | ||
|
||
import ( | ||
"github.com/go-go-golems/glazed/pkg/help" | ||
"github.com/go-go-golems/go-go-mcp/cmd/go-go-mcp/cmds/client" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
var ClientCmd = &cobra.Command{ | ||
Use: "client", | ||
Short: "MCP client functionality", | ||
Long: `Client commands for interacting with MCP servers`, | ||
} | ||
|
||
func InitClientCommand(helpSystem *help.HelpSystem) error { | ||
// Add client subcommands | ||
ClientCmd.AddCommand(client.ToolsCmd) | ||
ClientCmd.AddCommand(client.ResourcesCmd) | ||
ClientCmd.AddCommand(client.PromptsCmd) | ||
|
||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.