feat(tools): add ideas ecosystem with 7 read-only tools and enhance changelog params#6
Merged
feat(tools): add ideas ecosystem with 7 read-only tools and enhance changelog params#6
Conversation
…hangelog params Introduce full coverage for the Canny Ideas API surface — groups, ideas, insights, and opportunities — as a cohesive 'ideas' toolset. All 7 tools are read-only and use cursor-based pagination where the API requires it, falling back to skip-based for opportunities. New tools: - canny_list_groups / canny_get_group: group discovery by cursor or ID/urlName - canny_list_ideas / canny_get_idea: idea listing with advanced filtering (IdeaFilter objects), full-text search, and configurable sort order - canny_list_insights / canny_get_insight: qualitative feedback linked to ideas with priority and company attribution - canny_list_opportunities: Salesforce opportunity data with revenue and win/close state tied to Canny posts and ideas Infrastructure: - Add 6 new type interfaces (CannyGroup, CannyIdea, CannyIdeaStatus, IdeaFilter, CannyInsight, CannyOpportunity) to src/types/canny.ts - Add 7 client methods with cursor/skip response normalization - Extend ToolsetName union with 'ideas' for granular toolset filtering - Compact response transformers applied to all list endpoints Changelog tool enhancements: - Add 'sort' param to canny_list_changelog_entries (created, lastSaved, nonPublishedFirst, publishedAt) - Add 'scheduledFor' param to canny_create_changelog_entry for future publication scheduling Versioning: - Reorder CHANGELOG.md entries chronologically (newest first) - Current work targets v1.2.3 Tool count: 30 → 37 (19 read-only, 18 write) across 8 toolsets. Test and documentation updates reflect all new counts.
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.
Introduce full coverage for the Canny Ideas API surface — groups, ideas, insights, and opportunities — as a cohesive 'ideas' toolset. All 7 tools are read-only and use cursor-based pagination where the API requires it, falling back to skip-based for opportunities.
New tools:
Infrastructure:
Changelog tool enhancements:
Versioning:
Tool count: 30 → 37 (19 read-only, 18 write) across 8 toolsets. Test and documentation updates reflect all new counts.