feat: add OpenSea plugin for swaps, marketplace, and drops#67
Open
CodySearsOS wants to merge 2 commits into
Open
feat: add OpenSea plugin for swaps, marketplace, and drops#67CodySearsOS wants to merge 2 commits into
CodySearsOS wants to merge 2 commits into
Conversation
Adds OpenSea as a hybrid plugin for Base MCP covering: - Token swaps via cross-chain DEX aggregator - NFT drops/minting with direct calldata mapping - NFT marketplace trading (buy, sell, cross-chain fulfill) Uses CLI-first pattern (like Morpho/Avantis) with OpenSea MCP fallback for read operations on no-shell surfaces. All endpoints require API key - agent self-provisions via POST /api/v2/auth/keys. Also adds OpenSea to the native plugins table in SKILL.md. Co-Authored-By: cody.sears@opensea.io <cody.sears@opensea.io>
Restructures the OpenSea plugin to match the standardized plugin spec: - Full YAML frontmatter (tags, name, version, integration, chains, requires, auth, risk) - Canonical section names and ordering (Overview, Detection, Installation, Auth, Surface Routing, Commands, Orchestration, Submission, Example Prompts, Risks & Warnings, Notes) - Separate Submission section naming send_calls with exact mappings - Risks & Warnings with per-tag hazard/guardrail bullets - Verified CLI commands and MCP tool params against latest opensea-devtools skill Co-Authored-By: cody.sears@opensea.io <cody.sears@opensea.io>
Collaborator
🟡 Heimdall Review Status
|
stephancill
reviewed
Jun 4, 2026
Collaborator
stephancill
left a comment
There was a problem hiding this comment.
Thanks for the submission. The plugin is well-structured and the Seaport fulfillment path maps into send_calls. A couple of correctness issues need to be addressed before merge:
Required
- Revert the
SKILL.mdplugins-table row. Plugins shouldn't add themselves to the registry — maintainers will register them when the program is ready. Limit the PR toplugins/opensea.mdplus the net-new tag-vocabulary additions noted below. requires.allowlistis[], but the plugin makes direct HTTPS calls toapi.opensea.ioand uses the OpenSea MCP atmcp.opensea.io. Add both hosts so chat-only surfaces can reach them.- The REST fulfillment path returns decoded
input_data(a struct) plus afunctionsignature — not hex calldata. The documentedcurl POST /listings/fulfillment_data -> send_callspath therefore requires ABI-encodingfulfillAdvancedOrderbeforesend_calls. Either document the encoding step explicitly, or restrict fulfillment to the CLI path (which encodes internally).
Minor
- Tags
nft,marketplace,dropsare net-new; add them to the shared vocabulary list inskills/base-mcp/references/plugin-spec.md(thetagsentry under "Choosing each field's value"), as the spec instructs when introducing a new tag. cliPackageshould be the full invocation (npx @opensea/cli@latest).- Free-tier rate limits are stated as 120/60/60; the API returns 60/5/5. Key creation via
POST /api/v2/auth/keysis additionally limited to 1 key/hour, so on-demand minting will fail on repeat — document this. get_collection_statsis stale relative to the live MCP tool catalog; verify tool names against the catalog.
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.
No description provided.