Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 0 additions & 3 deletions .surface-breaking
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ CMD basecamp campfire list
CMD basecamp campfire messages
CMD basecamp campfire post
CMD basecamp campfire upload
CMD basecamp mcp
CMD basecamp upload archive
CMD basecamp upload doc
CMD basecamp upload doc create
Expand Down Expand Up @@ -349,7 +348,6 @@ FLAG basecamp lineup create --date type=string
FLAG basecamp lineup create --name type=string
FLAG basecamp lineup update --date type=string
FLAG basecamp lineup update --name type=string
FLAG basecamp mcp --help type=bool
FLAG basecamp message --body type=string
FLAG basecamp message --content type=string
FLAG basecamp message --subject type=string
Expand Down Expand Up @@ -654,7 +652,6 @@ SUB basecamp campfire list
SUB basecamp campfire messages
SUB basecamp campfire post
SUB basecamp campfire upload
SUB basecamp mcp
SUB basecamp upload archive
SUB basecamp upload doc
SUB basecamp upload doc create
Expand Down
3 changes: 0 additions & 3 deletions e2e/smoke/smoke_lifecycle.bats
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@ load smoke_helper
mark_out_of_scope "Shell completion generation"
}

@test "mcp is out of scope" {
mark_out_of_scope "MCP server — long-running process"
}

@test "tui is out of scope" {
mark_out_of_scope "Terminal UI — interactive"
Expand Down
1 change: 0 additions & 1 deletion internal/cli/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,6 @@ func Execute() {
cmd.AddCommand(commands.NewToolsCmd())
cmd.AddCommand(commands.NewConfigCmd())
cmd.AddCommand(commands.NewTodolistgroupsCmd())
cmd.AddCommand(commands.NewMCPCmd())
cmd.AddCommand(commands.NewCommandsCmd())
cmd.AddCommand(commands.NewVersionCmd())
cmd.AddCommand(commands.NewTimelineCmd())
Expand Down
1 change: 0 additions & 1 deletion internal/commands/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ func CommandCategories() []CommandCategory {
Commands: []CommandInfo{
{Name: "commands", Category: "additional", Description: "List all commands"},
{Name: "completion", Category: "additional", Description: "Generate shell completions", Actions: []string{"bash", "zsh", "fish", "powershell", "refresh", "status"}},
{Name: "mcp", Category: "additional", Description: "MCP server integration", Actions: []string{"server"}},
{Name: "tools", Category: "additional", Description: "Manage project dock tools", Actions: []string{"show", "create", "update", "trash", "enable", "disable", "reposition"}},
{Name: "skill", Category: "additional", Description: "Manage the embedded agent skill file", Actions: []string{"install"}},
{Name: "tui", Category: "additional", Description: "Launch the Basecamp workspace", Experimental: true, DevOnly: true},
Expand Down
1 change: 0 additions & 1 deletion internal/commands/commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ func buildRootWithAllCommands() *cobra.Command {
root.AddCommand(commands.NewToolsCmd())
root.AddCommand(commands.NewConfigCmd())
root.AddCommand(commands.NewTodolistgroupsCmd())
root.AddCommand(commands.NewMCPCmd())
root.AddCommand(commands.NewCommandsCmd())
root.AddCommand(commands.NewVersionCmd())
root.AddCommand(commands.NewTimelineCmd())
Expand Down
34 changes: 0 additions & 34 deletions internal/commands/mcp.go

This file was deleted.

Loading