Open
Conversation
Reviewer's GuideAdds a new MCP plugin "Agent47" that integrates an external AI agent job aggregator service by defining its manifest and providing plugin-specific documentation/usage instructions. Sequence diagram for Agent47 MCP job search interactionsequenceDiagram
participant MCPClient
participant MCPHost
participant Agent47MCPServer
participant JobPlatform_x402Bazaar
participant JobPlatform_RentAHuman
participant JobPlatform_VirtualsProtocol
MCPClient->>MCPHost: callTool name findJobs category data_analysis minPrice 100 limit 10
MCPHost->>Agent47MCPServer: SSE request to endpoint agent47_production_up_railway_app_sse
Agent47MCPServer->>JobPlatform_x402Bazaar: fetch jobs category data_analysis minPrice 100
Agent47MCPServer->>JobPlatform_RentAHuman: fetch jobs category data_analysis minPrice 100
Agent47MCPServer->>JobPlatform_VirtualsProtocol: fetch jobs category data_analysis minPrice 100
JobPlatform_x402Bazaar-->>Agent47MCPServer: job list
JobPlatform_RentAHuman-->>Agent47MCPServer: job list
JobPlatform_VirtualsProtocol-->>Agent47MCPServer: job list
Agent47MCPServer-->>MCPHost: aggregated jobs limited to 10
MCPHost-->>MCPClient: tool result jobs
Class diagram for Agent47 MCP manifest structureclassDiagram
class Manifest {
string identifier
string name
string version
string description
string author
string homepage
string repository
}
class McpConfig {
string endpoint
string protocol
string transport
}
class Capability {
string name
string description
string category
}
class Pricing {
string model
string future
}
class Support {
string documentation
string issues
string status
}
Manifest --> McpConfig : has
Manifest "1" --> "*" Capability : defines
Manifest --> Pricing : uses
Manifest --> Support : provides
class Agent47PluginInstance {
Manifest manifest
McpConfig mcpConfig
Capability capabilities
Pricing pricing
Support support
}
Agent47PluginInstance --> Manifest
Agent47PluginInstance --> McpConfig
Agent47PluginInstance --> Capability
Agent47PluginInstance --> Pricing
Agent47PluginInstance --> Support
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey - I've left some high level feedback:
- The manifest’s
pricing.futurefield is a free-form string; consider using a more structured shape (e.g.,{"model": "pay-per-use", "currency": "USDC", "min": 0.001, "max": 0.005}) so downstream tooling can more reliably parse and surface pricing details. - The README and manifest hard-code volatile metrics (job count, response time, uptime); consider either softening these claims or indicating they are approximate to avoid the need for frequent updates when the underlying numbers change.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- The manifest’s `pricing.future` field is a free-form string; consider using a more structured shape (e.g., `{"model": "pay-per-use", "currency": "USDC", "min": 0.001, "max": 0.005}`) so downstream tooling can more reliably parse and surface pricing details.
- The README and manifest hard-code volatile metrics (job count, response time, uptime); consider either softening these claims or indicating they are approximate to avoid the need for frequent updates when the underlying numbers change.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
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.
Adding Agent47, an MCP server that aggregates AI agent job opportunities from 9+ platforms including x402 Bazaar, RentAHuman, and Virtuals Protocol.
Features:
Summary by Sourcery
Add a new Agent47 MCP plugin providing unified AI agent job aggregation across multiple platforms.
New Features:
Documentation: