-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add iii-mcp and iii-a2a protocol workers #4
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
Open
rohitg00
wants to merge
9
commits into
main
Choose a base branch
from
feat/mcp-a2a-workers
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
03ca455
feat: add iii-mcp and iii-a2a protocol workers
rohitg00 1ff864c
fix: use CARGO_PKG_VERSION in manifest test instead of hardcoded version
rohitg00 c350791
fix: address all CodeRabbit review findings
rohitg00 c08eacb
fix(mcp): add mcp.expose metadata to generated worker functions
rohitg00 bcdc5a1
docs(mcp): add MCP Inspector testing instructions to README
rohitg00 bdd6565
fix(mcp): handle builtin tools in Streamable HTTP dispatch
rohitg00 1c8eb95
fix(mcp): build against latest SDK, fix api_path and trigger metadata
rohitg00 debbd95
chore: remove Cargo.lock from tracking, add to .gitignore
rohitg00 cd96d26
docs: rename Motia Workers to III Workers
rohitg00 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| [package] | ||
| name = "iii-a2a" | ||
| version = "0.3.0" | ||
| edition = "2024" | ||
| description = "A2A protocol worker for iii-engine" | ||
| license = "Apache-2.0" | ||
| authors = ["Rohit Ghumare <ghumare64@gmail.com>"] | ||
| repository = "https://github.com/iii-hq/workers" | ||
| homepage = "https://github.com/iii-hq/workers" | ||
| rust-version = "1.85" | ||
| keywords = ["a2a", "agent-to-agent", "ai", "iii-engine"] | ||
| categories = ["command-line-utilities"] | ||
|
|
||
| [[bin]] | ||
| name = "iii-a2a" | ||
| path = "src/main.rs" | ||
|
|
||
| [dependencies] | ||
| iii-sdk = "0.10.0" | ||
| tokio = { version = "1", features = ["macros", "rt-multi-thread", "sync", "time", "signal"] } | ||
| serde = { version = "1", features = ["derive"] } | ||
| serde_json = "1" | ||
| clap = { version = "4", features = ["derive"] } | ||
| tracing = "0.1" | ||
| tracing-subscriber = { version = "0.3", features = ["env-filter"] } | ||
| anyhow = "1" | ||
| uuid = { version = "1", features = ["v4"] } |
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.
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.
Document the public URL flag in the A2A usage section.
The PR adds a configurable agent-card URL, but this block only shows local/default invocations. Please document
--base-urlhere and clarify whether it expects the public origin or the full/a2aendpoint; otherwise non-local deployments have no guidance for advertising a reachable interface.🤖 Prompt for AI Agents