Open
Conversation
Add CRUD operations for model objects following Anthropic mcp-builder skill guidelines: Tools added: - icepanel_create_model_object: Create new C4 elements - icepanel_update_model_object: Update existing elements - icepanel_delete_model_object: Delete elements (with warning) Implementation details: - IcePanelApiError class for structured error handling - handleApiError() with actionable messages per HTTP status - CreateModelObjectRequest/UpdateModelObjectRequest types - Comprehensive tool descriptions with Args/Returns/Examples Per mcp-builder best practices: - snake_case tool names with service prefix - Clear destructive operation warnings - Error messages guide users toward solutions
Bug fixes: - Fix ModelObject.status type: was single literal 'deprecated', now union - Fix ModelObject.type type: was single literal 'actor', now union - Add ModelConnectionResponse type for single connection responses - Add return type to getConnection() function - Add isError: true to all read tool error handlers for MCP compliance These fixes ensure proper TypeScript type checking and consistent error handling per MCP specification.
Add CRUD operations for: - Model objects (create, update, delete) - Connections (create, update, delete) - Teams (create, update, delete) - Tags (create, update, delete) - Domains (create, update, delete) All tools follow Anthropic mcp-builder skill guidelines: - snake_case naming with icepanel_ prefix - Proper error handling with actionable messages - isError: true on failures for MCP compliance Bug fixes included: - Fixed ModelObject.status/type union types - Added ModelConnectionResponse type - Added isError: true to all read tool error handlers
This was referenced Jan 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds the write side of the MCP tools so the client can manage IcePanel data, not just read it.
What I changed
Why I did it
Test plan
Recommended merge order