Add MCP integration for SetTaskSuccess and SetTaskFailure

This commit is contained in:
Ian Gulliver
2025-07-04 22:52:18 -07:00
parent 3dadea457a
commit f0c7ee76ef
6 changed files with 230 additions and 16 deletions

19
mcp_test.go Normal file
View File

@@ -0,0 +1,19 @@
package taskcp
import (
"testing"
"github.com/mark3labs/mcp-go/server"
)
func TestRegisterMCPTools(t *testing.T) {
service := New()
s := server.NewMCPServer("Test Server", "1.0.0")
err := RegisterMCPTools(s, service)
if err != nil {
t.Fatalf("Failed to register MCP tools: %v", err)
}
}