Change summary
tools/tools.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Detailed changes
@@ -14,7 +14,6 @@ import (
"github.com/mark3labs/mcp-go/mcp"
)
-
// AreaProvider defines the interface for accessing area data.
type AreaProvider interface {
GetName() string
@@ -114,6 +113,7 @@ func (h *Handlers) HandleListAreasAndGoals(ctx context.Context, request mcp.Call
},
}, nil
}
+
// HandleGetTimestamp handles the get_timestamp tool call.
func (h *Handlers) HandleGetTimestamp(ctx context.Context, request mcp.CallToolRequest) (*mcp.CallToolResult, error) {
natLangDate, ok := request.Params.Arguments["natural_language_date"].(string)