summaryrefslogtreecommitdiff
path: root/Magefile.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-13 20:25:12 +0200
committerPaul Buetow <paul@buetow.org>2026-02-13 20:25:12 +0200
commit78d1b4a990148bc8f021958d0fe5af7769a49088 (patch)
treecb669edb7c2dd21b6ded5d38e2cb3d7445cd8136 /Magefile.go
parent4e8ffa93d9c9b2be6fdb4519c8fe5a96cc135fef (diff)
chore: deprecate hexai-mcp-server as experimental
Add deprecation notices across hexai-mcp-server codebase and documentation. The MCP server is now considered experimental and not actively maintained, as prompts are managed through slash commands and meta-commands instead. Changes: - Add runtime deprecation warning to stderr on binary startup - Mark feature as deprecated in README.md - Add deprecation notices to all 8 MCP documentation files - Add deprecation log message to run.go - Update Magefile.go build comment The code remains fully functional but warns users of its experimental status. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Diffstat (limited to 'Magefile.go')
-rw-r--r--Magefile.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/Magefile.go b/Magefile.go
index bea6b1f..4d79079 100644
--- a/Magefile.go
+++ b/Magefile.go
@@ -53,7 +53,7 @@ func BuildHexaiTmuxEdit() error {
return sh.RunV("go", "build", "-o", "hexai-tmux-edit", "cmd/hexai-tmux-edit/main.go")
}
-// BuildHexaiMCPServer builds the MCP server binary.
+// BuildHexaiMCPServer builds the MCP server binary (DEPRECATED - experimental, not actively maintained).
func BuildHexaiMCPServer() error {
printCoverage()
return sh.RunV("go", "build", "-o", "hexai-mcp-server", "cmd/hexai-mcp-server/main.go")