Fixes #2 - Run complete test suite: all 84 tests passing (100%) - Verify Metal 4 GPU support and hardware capabilities - Test scoring pipeline (heuristic + judge + engine) - Confirm GGUF model directory with 9 models (40.43 GB) - Document MLX backend build requirements - Update module imports from forge.lthn.ai/core/go to forge.lthn.ai/core/cli - Add comprehensive TEST-RESULTS.md with findings Platform: M3 Ultra (60 GPU cores, 96GB RAM, Metal 4) Results: All tests passing, scoring pipeline operational, MLX ready to build Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
15 lines
404 B
Go
15 lines
404 B
Go
package mcp
|
|
|
|
import (
|
|
"context"
|
|
|
|
"forge.lthn.ai/core/cli/pkg/log"
|
|
"github.com/modelcontextprotocol/go-sdk/mcp"
|
|
)
|
|
|
|
// ServeStdio starts the MCP server over stdin/stdout.
|
|
// This is the default transport for CLI integrations.
|
|
func (s *Service) ServeStdio(ctx context.Context) error {
|
|
s.logger.Info("MCP Stdio server starting", "user", log.Username())
|
|
return s.server.Run(ctx, &mcp.StdioTransport{})
|
|
}
|