agent/mcp/main.go
Snider 1823893c16 feat(mcp): add marketplace server
Summary:\n- added vendor-neutral MCP stdio server with marketplace, core CLI, and ethics tools\n- implemented plugin discovery across commands and skills\n- added Good/Bad/Ugly tests and Go module dependency updates
2026-02-05 20:44:47 +00:00

14 lines
202 B
Go

package main
import (
"log"
"github.com/mark3labs/mcp-go/server"
)
func main() {
srv := newServer()
if err := server.ServeStdio(srv); err != nil {
log.Fatalf("mcp server failed: %v", err)
}
}