Moved from go-ai/mcp/ and php-mcp. Produces core-mcp binary. 49 MCP tools including brain, RAG, ML, IDE bridge.
12 lines
184 B
Go
12 lines
184 B
Go
package main
|
|
|
|
import (
|
|
"forge.lthn.ai/core/cli/pkg/cli"
|
|
mcpcmd "forge.lthn.ai/core/mcp/cmd/mcpcmd"
|
|
)
|
|
|
|
func main() {
|
|
cli.Main(
|
|
cli.WithCommands("mcp", mcpcmd.AddMCPCommands),
|
|
)
|
|
}
|