diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-13 20:25:12 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-13 20:25:12 +0200 |
| commit | 78d1b4a990148bc8f021958d0fe5af7769a49088 (patch) | |
| tree | cb669edb7c2dd21b6ded5d38e2cb3d7445cd8136 /internal | |
| parent | 4e8ffa93d9c9b2be6fdb4519c8fe5a96cc135fef (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 'internal')
| -rw-r--r-- | internal/hexaimcp/run.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/hexaimcp/run.go b/internal/hexaimcp/run.go index 5f687f1..23faa08 100644 --- a/internal/hexaimcp/run.go +++ b/internal/hexaimcp/run.go @@ -61,6 +61,7 @@ func RunWithFactory( }() logger.Printf("hexai-mcp-server starting") + logger.Printf("WARNING: hexai-mcp-server is DEPRECATED and experimental - not actively maintained") // Load configuration cfg := loadConfig(logger, configPath) |
