feat(agent-toolkit): add object schema management tools (v5.6.0)#324
Merged
feat(agent-toolkit): add object schema management tools (v5.6.0)#324
Conversation
…ment Exposes the create_account_entity GraphQL mutation (dev API) as an MCP tool, allowing Sidekick to create account-level entity models. Co-Authored-By: Claude Opus 4.1 <noreply@anthropic.com>
Adds 12 new account-level schema management tools exposing the full data-structure GraphQL API through the MCP agent toolkit: - create_schema: create a new account-level schema - get_schemas: retrieve schemas by ID or name - update_schema: update schema description/parent (with optimistic locking) - delete_schema: delete a schema (requires no connected boards) - connect_board_to_schema: connect a board to a schema - detach_boards_from_schema: detach boards from their schemas - create_schema_columns: add columns to a schema - update_schema_columns: update columns on a schema - deactivate_schema_column: soft-disable a column - reactivate_schema_column: re-enable a deactivated column - opt_out_schema_column: stop auto-adding column to boards - opt_in_schema_column: auto-add column to boards - delete_entity_columns: hard-delete columns (dev-only, destructive) Replaces the stale create_account_entity tool (renamed upstream). Fetched fresh dev schema and ran codegen; all tools use generated types. 60 tests added (5 per tool). Co-Authored-By: Claude Opus 4.1 <noreply@anthropic.com>
- Rename getSchemasQueryDev constant (was incorrectly named MutationDev) - Rename delete_entity_columns tool params from entityId/entityName to schemaId/schemaName for consistency - Omit policy field when not provided instead of sending empty defaults Co-Authored-By: Claude Opus 4.1 <noreply@anthropic.com>
eadd908 to
47a4bee
Compare
almogru
approved these changes
Apr 30, 2026
RomKadria
approved these changes
Apr 30, 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.
Summary
Adds 8 new MCP tools exposing the data-structure object schema GraphQL API to Sidekick.
Tools added
Design decisions
Test plan
🤖 Generated with Claude Code