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
14 lines
202 B
Go
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)
|
|
}
|
|
}
|