-
Notifications
You must be signed in to change notification settings - Fork 71
feat(mcp): Add HTTP header bearer token authentication support #914
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
devin-ai-integration
wants to merge
16
commits into
devin/1763010134-bearer-token-auth
from
devin/1765845063-http-header-bearer-token
Closed
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
f882e93
feat(cloud): Add CloudWorkspace.from_env() classmethod (#909)
aaronsteers 60a087f
feat: Add `/prerelease` slash command for PyPI prereleases (#910)
aaronsteers 3869ac4
fix: Add required permissions for prerelease workflow (#911)
aaronsteers cd1b390
fix: Use workflow_dispatch instead of workflow_call for OIDC compatib…
aaronsteers 9f3c707
fix: Use GitHub App token for prerelease workflow dispatch (#913)
aaronsteers 5591792
feat(mcp): Add HTTP header bearer token authentication support
devin-ai-integration[bot] 954dd1a
fix(lint): Remove unused noqa directive in CloudWorkspace
devin-ai-integration[bot] ab593dd
refactor: Move imports to top-level per repo standards
devin-ai-integration[bot] 5298ade
Merge remote-tracking branch 'origin/devin/1763010134-bearer-token-au…
devin-ai-integration[bot] 59ad29a
fix(types): Fix type errors from base PR merge - pass bearer_token to…
devin-ai-integration[bot] 3b08a87
Merge main to get noqa comments for SLF001 lint errors
devin-ai-integration[bot] 4c0e44c
fix(lint): Add noqa comment for PLR0904 on CloudWorkspace class
devin-ai-integration[bot] dcde4aa
fix(lint): Update noqa comments to force merge conflict resolution in…
devin-ai-integration[bot] 96ed8d4
Merge base PR branch and resolve conflicts in favor of noqa comments
devin-ai-integration[bot] d0215fd
refactor: Remove unrelated CI type fixes, keep only spec changes and …
devin-ai-integration[bot] 98d6d26
chore: Remove internal task tracking file
devin-ai-integration[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Devin, Can you create a follow-on issue to refactor slightly...
Ideally nothing outside the MCP module would import from the MCP module. That said, this is expedient and doesn't seem to create circular dependencies or side effects (that I can see). So I'm inclined to merge and create follow-on issue for refactoring.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Created follow-on issue: #915
The issue proposes moving
get_bearer_token_from_headers()to a shared utility location (likeairbyte/_util/http_auth.py) so the MCP module can import from it rather than the other way around.