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
88 lines
2.1 KiB
Go
88 lines
2.1 KiB
Go
// Copyright 2025 The Go MCP SDK Authors. All rights reserved.
|
|
// Use of this source code is governed by the license
|
|
// that can be found in the LICENSE file.
|
|
|
|
package mcp
|
|
|
|
import (
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
// methodCache is a per-method TTL cache for list and read results, as
|
|
// described in SEP-2549. Each entry is keyed by cursor (for paginated list
|
|
// methods) or URI (for resources/read).
|
|
type methodCache[R CacheableResult] struct {
|
|
mu sync.Mutex
|
|
cachedValues map[string]*cacheEntry[R]
|
|
}
|
|
|
|
type cacheEntry[R CacheableResult] struct {
|
|
result R
|
|
receivedAt time.Time
|
|
}
|
|
|
|
func (e *cacheEntry[R]) isValid() bool {
|
|
return time.Since(e.receivedAt) < time.Duration(e.result.GetTTLMs())*time.Millisecond
|
|
}
|
|
|
|
func (mc *methodCache[R]) get(key string) (R, bool) {
|
|
mc.mu.Lock()
|
|
defer mc.mu.Unlock()
|
|
entry, ok := mc.cachedValues[key]
|
|
if !ok {
|
|
var zero R
|
|
return zero, false
|
|
}
|
|
if entry.result.GetTTLMs() <= 0 || !entry.isValid() {
|
|
delete(mc.cachedValues, key)
|
|
var zero R
|
|
return zero, false
|
|
}
|
|
return entry.result, true
|
|
}
|
|
|
|
func (mc *methodCache[R]) put(key string, result R) {
|
|
mc.mu.Lock()
|
|
defer mc.mu.Unlock()
|
|
if mc.cachedValues == nil {
|
|
mc.cachedValues = make(map[string]*cacheEntry[R])
|
|
}
|
|
mc.cachedValues[key] = &cacheEntry[R]{
|
|
result: result,
|
|
receivedAt: time.Now(),
|
|
}
|
|
}
|
|
|
|
func (mc *methodCache[R]) invalidate() {
|
|
mc.mu.Lock()
|
|
defer mc.mu.Unlock()
|
|
clear(mc.cachedValues)
|
|
}
|
|
|
|
func (mc *methodCache[R]) invalidateKey(key string) {
|
|
mc.mu.Lock()
|
|
defer mc.mu.Unlock()
|
|
delete(mc.cachedValues, key)
|
|
}
|
|
|
|
// cursorParams is the constraint for list-method params that carry a pagination
|
|
// cursor and can be checked for nil. Both methods are already implemented by
|
|
// every concrete list-params type.
|
|
type cursorParams interface {
|
|
Params
|
|
cursorPtr() *string
|
|
}
|
|
|
|
// cachedListResult returns a cached list result keyed by the request cursor
|
|
// (SEP-2549). It returns the zero value and false on miss or when params is nil.
|
|
func cachedListResult[P cursorParams, R CacheableResult](cache *methodCache[R], params P) (R, bool) {
|
|
key := ""
|
|
if !params.isNil() {
|
|
if cp := params.cursorPtr(); cp != nil {
|
|
key = *cp
|
|
}
|
|
}
|
|
return cache.get(key)
|
|
}
|