feat(mcp): scaffold Go module under mcp/ for Claude Desktop bundle

Add a new top-level mcp/ Go module that will host the Claude Desktop MCPB
server. U1 of the Claude Desktop .mcpb bundle plan: scaffold only, no
behavior yet.

- mcp/go.mod targets Go 1.22+ with mark3labs/mcp-go as the planned
  dependency (added in U3 when the server wiring lands).
- mcp/scripts/sync-engine.sh mirrors skills/last30days/scripts/ into
  mcp/vendored/ before each build, keeping the Code skill and Desktop
  bundle on the same engine source.
- Root .gitignore excludes mcp/vendored/ and mcp/build/ so the engine
  mirror and cross-compiled binaries stay local.
This commit is contained in:
Matt Van Horn
2026-05-17 20:42:43 -07:00
parent d9f606ff75
commit 15781bfcc0
6 changed files with 96 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
// Package main is the entry point for the last30days MCP server bundled
// as a .mcpb for Claude Desktop. See mcp/README.md for build instructions.
package main
// Version is stamped at build time via -ldflags "-X main.Version=<tag>".
// Defaults to "dev" for local builds.
var Version = "dev"
func main() {
// Wired in U3.
}