xdebug-mcp/go.mod
thibaud-leclere 6246b88bd5 refactor: bypass bootstrap, expose only mcp and version commands
The framework's help listed setup/login/config/update commands that are
irrelevant for xdebug-mcp (no auth or config needed). Replace bootstrap.Run
with a minimal dispatcher that only exposes the commands that matter.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-12 10:18:35 +02:00

31 lines
1.1 KiB
Modula-2

module forge.lclr.dev/AI/xdebug-mcp
go 1.25.5
require (
forge.lclr.dev/AI/mcp-framework v1.10.0
github.com/mark3labs/mcp-go v0.52.0
github.com/stretchr/testify v1.11.1
)
require (
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
github.com/99designs/keyring v1.2.2 // indirect
github.com/BurntSushi/toml v1.6.0 // indirect
github.com/danieljoos/wincred v1.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dvsekhvalnov/jose2go v1.5.0 // indirect
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
github.com/google/jsonschema-go v0.4.2 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
github.com/mtibben/percent v0.2.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 // indirect
github.com/spf13/cast v1.7.1 // indirect
github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
golang.org/x/sys v0.41.0 // indirect
golang.org/x/term v0.40.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)