feat(tools): add Intercom tool integration (#4256)#5171
Merged
bryanadenhq merged 4 commits intoaden-hive:mainfrom Feb 28, 2026
Merged
feat(tools): add Intercom tool integration (#4256)#5171bryanadenhq merged 4 commits intoaden-hive:mainfrom
bryanadenhq merged 4 commits intoaden-hive:mainfrom
Conversation
Register INTERCOM_ACCESS_TOKEN in INTEGRATION_CREDENTIALS for the 8 Intercom tools (search/get conversations, contacts, notes, tags, assignment, teams). Tool implementation follows in subsequent commits.
a95557f to
fc0c3e1
Compare
bryanadenhq
requested changes
Feb 23, 2026
Collaborator
bryanadenhq
left a comment
There was a problem hiding this comment.
Hi @Ttian18, only one minor change for this, thanks! Additionally, please include a simple readme for the tools in this pr. Thanks!
| def intercom_assign_conversation( | ||
| conversation_id: str, | ||
| assignee_id: str, | ||
| assignee_type: str = "admin", |
Collaborator
There was a problem hiding this comment.
assignee_type is calidated on line 536 but is never passed to client.assign_conversation(), please remove it or pass it through.
Contributor
Author
There was a problem hiding this comment.
Fixed — assignee_type is now passed through to _IntercomClient.assign_conversation() and included in the API payload. Added tests for both default "admin" and explicit "team" values. Also added the README and an Intercom health checker for the credential registry.
Ttian18
added a commit
to Ttian18/hive
that referenced
this pull request
Feb 27, 2026
…aden-hive#4256) - Pass assignee_type from intercom_assign_conversation tool function through to _IntercomClient.assign_conversation() and into the API payload - Add tests for assignee_type="team" passthrough at client and tool levels - Add tool README with setup, usage examples, and error handling Addresses PR aden-hive#5171 review feedback from @bryanadenhq Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…aden-hive#4256) - Pass assignee_type from intercom_assign_conversation tool function through to _IntercomClient.assign_conversation() and into the API payload - Add tests for assignee_type="team" passthrough at client and tool levels - Add tool README with setup, usage examples, and error handling Addresses PR aden-hive#5171 review feedback from @bryanadenhq
d4ec478 to
55a4cde
Compare
…4256) Add IntercomHealthChecker (subclass of OAuthBearerHealthChecker) and register it in HEALTH_CHECKERS so the credential registry completeness test passes in CI.
bryanadenhq
approved these changes
Feb 28, 2026
Collaborator
bryanadenhq
left a comment
There was a problem hiding this comment.
Thanks for updating and contributing!
sarthakNITT
pushed a commit
to sarthakNITT/hive
that referenced
this pull request
Mar 17, 2026
…aden-hive#4256) - Pass assignee_type from intercom_assign_conversation tool function through to _IntercomClient.assign_conversation() and into the API payload - Add tests for assignee_type="team" passthrough at client and tool levels - Add tool README with setup, usage examples, and error handling Addresses PR aden-hive#5171 review feedback from @bryanadenhq
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.
Description
Add Intercom tool integration with 8 MCP tools for managing conversations,
contacts, tags, and team assignment via Intercom API v2.11.
Type of Change
Related Issues
Fixes #4256
Changes Made
intercom_toolpackage with_IntercomClientwrapping Intercom REST API v2.11intercom_search_conversations,intercom_get_conversation,intercom_get_contact,intercom_search_contacts,intercom_add_note,intercom_add_tag,intercom_assign_conversation,intercom_list_teamstools/__init__.pycredential handling, and credential spec
Testing
uv run pytest tools/tests/ -v)uv run ruff check && uv run ruff format --check)Checklist