Skip to content

Commit ccd8be9

Browse files
gaarutyunovclaude
andcommitted
fix: resolve CI failures (missing go.sum, lint config, and lint errors)
- Add go.sum (was never committed, causing CI vet failure) - Fix incorrect reggen pseudo-version hash in go.mod - Update .golangci.yml for golangci-lint v2 (move gofmt/goimports to formatters, remove gosimple merged into staticcheck) - Add package comment to cmd/proxy/main.go (revive) - Suppress contextcheck on cleanup closure that intentionally uses fresh context - Run go mod tidy to prune unused dependencies Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent ec99b32 commit ccd8be9

5 files changed

Lines changed: 253 additions & 31 deletions

File tree

.golangci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,20 @@ version: "2"
22
linters:
33
enable:
44
- errcheck
5-
- gosimple
65
- govet
76
- ineffassign
87
- staticcheck
98
- unused
10-
- gofmt
11-
- goimports
129
- misspell
1310
- revive
1411
- exhaustive
1512
- noctx
1613
- bodyclose
1714
- contextcheck
15+
formatters:
16+
enable:
17+
- gofmt
18+
- goimports
1819
linters-settings:
1920
goimports:
2021
local-prefixes: github.com/gaarutyunov/mcp-anything

cmd/proxy/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Package main is the entry point for the mcp-anything proxy.
12
package main
23

34
import (

go.mod

Lines changed: 59 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,64 @@
11
module github.com/gaarutyunov/mcp-anything
22

3-
go 1.23
3+
go 1.25.0
4+
5+
require github.com/testcontainers/testcontainers-go v0.36.0
46

57
require (
6-
github.com/brianvoe/gofakeit/v7 v7.2.1
7-
github.com/coreos/go-oidc/v3 v3.17.0
8-
github.com/fsnotify/fsnotify v1.9.0
9-
github.com/getkin/kin-openapi v0.134.0
10-
github.com/go-chi/chi/v5 v5.2.0
11-
github.com/itchyny/gojq v0.12.18
12-
github.com/knadh/koanf/parsers/yaml v0.1.0
13-
github.com/knadh/koanf/providers/file v1.1.2
14-
github.com/knadh/koanf/v2 v2.1.2
15-
github.com/lucasjones/reggen v0.0.0-20200904144131-37352a28cb6b
16-
github.com/modelcontextprotocol/go-sdk v1.3.0
17-
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
18-
github.com/speakeasy-api/openapi-overlay v0.10.3
19-
github.com/testcontainers/testcontainers-go v0.36.0
20-
github.com/yuin/gopher-lua v1.1.1
21-
github.com/zitadel/oidc/v3 v3.45.1
22-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0
23-
go.opentelemetry.io/otel v1.35.0
24-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.35.0
25-
go.opentelemetry.io/otel/exporters/prometheus v0.57.0
26-
go.opentelemetry.io/otel/metric v1.35.0
27-
go.opentelemetry.io/otel/sdk v1.35.0
28-
go.opentelemetry.io/otel/sdk/metric v1.35.0
29-
go.opentelemetry.io/otel/trace v1.35.0
30-
golang.org/x/oauth2 v0.33.0
31-
gopkg.in/yaml.v3 v3.0.1
8+
dario.cat/mergo v1.0.1 // indirect
9+
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
10+
github.com/Microsoft/go-winio v0.6.2 // indirect
11+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
12+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
13+
github.com/containerd/log v0.1.0 // indirect
14+
github.com/containerd/platforms v0.2.1 // indirect
15+
github.com/cpuguy83/dockercfg v0.3.2 // indirect
16+
github.com/davecgh/go-spew v1.1.1 // indirect
17+
github.com/distribution/reference v0.6.0 // indirect
18+
github.com/docker/docker v28.0.1+incompatible // indirect
19+
github.com/docker/go-connections v0.5.0 // indirect
20+
github.com/docker/go-units v0.5.0 // indirect
21+
github.com/ebitengine/purego v0.8.2 // indirect
22+
github.com/felixge/httpsnoop v1.0.4 // indirect
23+
github.com/go-logr/logr v1.4.3 // indirect
24+
github.com/go-logr/stdr v1.2.2 // indirect
25+
github.com/go-ole/go-ole v1.2.6 // indirect
26+
github.com/gogo/protobuf v1.3.2 // indirect
27+
github.com/google/uuid v1.6.0 // indirect
28+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 // indirect
29+
github.com/klauspost/compress v1.17.4 // indirect
30+
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
31+
github.com/magiconair/properties v1.8.9 // indirect
32+
github.com/moby/docker-image-spec v1.3.1 // indirect
33+
github.com/moby/patternmatcher v0.6.0 // indirect
34+
github.com/moby/sys/sequential v0.5.0 // indirect
35+
github.com/moby/sys/user v0.1.0 // indirect
36+
github.com/moby/sys/userns v0.1.0 // indirect
37+
github.com/moby/term v0.5.0 // indirect
38+
github.com/morikuni/aec v1.0.0 // indirect
39+
github.com/opencontainers/go-digest v1.0.0 // indirect
40+
github.com/opencontainers/image-spec v1.1.1 // indirect
41+
github.com/pkg/errors v0.9.1 // indirect
42+
github.com/pmezard/go-difflib v1.0.0 // indirect
43+
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
44+
github.com/shirou/gopsutil/v4 v4.25.1 // indirect
45+
github.com/sirupsen/logrus v1.9.3 // indirect
46+
github.com/stretchr/testify v1.11.1 // indirect
47+
github.com/tklauser/go-sysconf v0.3.12 // indirect
48+
github.com/tklauser/numcpus v0.6.1 // indirect
49+
github.com/yusufpapurcu/wmi v1.2.4 // indirect
50+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
51+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0 // indirect
52+
go.opentelemetry.io/otel v1.42.0 // indirect
53+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.35.0 // indirect
54+
go.opentelemetry.io/otel/metric v1.42.0 // indirect
55+
go.opentelemetry.io/otel/trace v1.42.0 // indirect
56+
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
57+
golang.org/x/crypto v0.45.0 // indirect
58+
golang.org/x/sys v0.41.0 // indirect
59+
google.golang.org/genproto/googleapis/api v0.0.0-20250218202821-56aae31c358a // indirect
60+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
61+
google.golang.org/grpc v1.71.0 // indirect
62+
google.golang.org/protobuf v1.36.5 // indirect
63+
gopkg.in/yaml.v3 v3.0.1 // indirect
3264
)

0 commit comments

Comments
 (0)