Adds a POST /mcp endpoint (github.com/modelcontextprotocol/go-sdk) with
three tools mirroring the existing /calendar logic: get_calendar_today,
get_calendar_for_date and get_holidays. Bumps go.mod to Go 1.25 (required
by the SDK) and vendors the new dependencies. Also fixes an unanchored
.gitignore rule ("domogeek") that was silently excluding all untracked
files under cmd/domogeek/.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Hu8wwahgecuCGfesTKCfEd
24 lines
944 B
Go
24 lines
944 B
Go
// Copyright 2019 The Go MCP SDK Authors. All rights reserved.
|
|
// Use of this source code is governed by an MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Package xcontext is a package to offer the extra functionality we need
|
|
// from contexts that is not available from the standard context package.
|
|
package xcontext
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
)
|
|
|
|
// Detach returns a context that keeps all the values of its parent context
|
|
// but detaches from the cancellation and error handling.
|
|
func Detach(ctx context.Context) context.Context { return detachedContext{ctx} }
|
|
|
|
type detachedContext struct{ parent context.Context }
|
|
|
|
func (v detachedContext) Deadline() (time.Time, bool) { return time.Time{}, false }
|
|
func (v detachedContext) Done() <-chan struct{} { return nil }
|
|
func (v detachedContext) Err() error { return nil }
|
|
func (v detachedContext) Value(key any) any { return v.parent.Value(key) }
|