-
Notifications
You must be signed in to change notification settings - Fork 113
FIRE-831 | Rogue Server | MCP transport #103
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
Merged
Merged
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
26a4cce
WIP - add mcp example
yuval-qf bbaac20
Merge branch 'main' into feature/FIRE-800-mcp-support
yuval-qf da4e592
Fix mcp agent
yuval-qf 40048a1
Fix mcp agent
yuval-qf a830b10
typing
yuval-qf 442bb83
Add docs
yuval-qf 2d7d54f
Add base logic to support different transports
yuval-qf c8c086b
Use local sdk for github action tests
yuval-qf d926a5b
Add TransportType to sdk __init__/__all__
yuval-qf ae56669
fix gh tests
yuval-qf d34d404
Fix cyclical import
yuval-qf 3d06933
Add missing files
yuval-qf 8b2cf93
Fix missing kwarg
yuval-qf ee76845
cicd fix
yuval-qf 54fe40d
Fix import
yuval-qf 81cec81
Merge branch 'main' into feature/FIRE-831-mcp-transport-support
yuval-qf 43e0f56
Merge branch 'main' into feature/FIRE-800-mcp-support
yuval-qf 67b11eb
Merge branch 'feature/FIRE-800-mcp-support' into feature/FIRE-831-mcpβ¦
yuval-qf 69e064a
Add mcp transport
yuval-qf 8b80718
formatting
yuval-qf 0430690
transport -> protocol
yuval-qf 2692157
Merge branch 'main' into feature/FIRE-800-mcp-support
yuval-qf 09e8181
formatting
yuval-qf f25ff97
Merge branch 'feature/FIRE-800-mcp-support' into feature/FIRE-831-mcpβ¦
yuval-qf 1524c80
Fix session id
yuval-qf eddf17a
Improve import time
yuval-qf 84acb33
Rename example folder
yuval-qf 0f313cc
Merge branch 'feature/FIRE-800-mcp-support' into feature/FIRE-831-mcpβ¦
yuval-qf a7fb351
Merge branch 'main' into feature/FIRE-831-mcp-transport-support
yuval-qf ff31cb7
revert unreleated changes
yuval-qf 712b93c
Rabbit cr
yuval-qf 67ed649
Add transport support
yuval-qf 23e8b6c
Improve import time
yuval-qf ebdf875
Rabbit cr
yuval-qf dfbb5ff
Update launch.json path
yuval-qf dd87e37
Add transport to a2a to create a clean convention
yuval-qf e67b99e
CR
yuval-qf c36e371
Fix partial import
yuval-qf 6d18a8e
Run mcp example from maing
yuval-qf f669cd1
Merge branch 'main' into feature/FIRE-831-mcp-transport-support
yuval-qf 473e0bb
Fix typo
yuval-qf f28b81b
Rabbit cr - Add click options to mcp examples
yuval-qf 24f1e74
Merge branch 'main' into feature/FIRE-831-mcp-transport-support
yuval-qf b23a8f1
Fix uv step hang in github workflow
yuval-qf e28e865
Merge branch 'main' into feature/FIRE-831-mcp-transport-support
yuval-qf 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
Some comments aren't visible on the classic Files Changed page.
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,21 @@ | ||
| from . import evaluator_agent, policy_evaluation, run_evaluator_agent | ||
| from . import ( | ||
| a2a, | ||
| base_evaluator_agent, | ||
| evaluator_agent_factory, | ||
| mcp, | ||
| policy_evaluation, | ||
| run_evaluator_agent, | ||
| ) | ||
| from .a2a import A2AEvaluatorAgent | ||
| from .mcp import MCPEvaluatorAgent | ||
|
|
||
| __all__ = [ | ||
| "base_evaluator_agent", | ||
| "evaluator_agent_factory", | ||
| "policy_evaluation", | ||
| "run_evaluator_agent", | ||
| "a2a", | ||
| "mcp", | ||
| "A2AEvaluatorAgent", | ||
| "MCPEvaluatorAgent", | ||
| ] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| from . import a2a_evaluator_agent | ||
| from .a2a_evaluator_agent import A2AEvaluatorAgent | ||
|
|
||
| __all__ = [ | ||
| "A2AEvaluatorAgent", | ||
| ] |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.