Add flooor.fun plugin for Base MCP#131
Open
omgbbqhaxx wants to merge 2 commits into
Open
Conversation
flooor.fun is a continuous NFT auction platform on Base. This plugin enables agents to query live auction state and submit sign, claim, and sellToHighest transactions using chain_rpc_request and send_calls. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Collaborator
🟡 Heimdall Review Status
|
sekoclup-dev
approved these changes
Jun 27, 2026
Collaborator
|
Review Error for sekoclup-dev @ 2026-06-27 12:22:21 UTC |
sekoclup-dev
approved these changes
Jun 27, 2026
Collaborator
|
Review Error for sekoclup-dev @ 2026-06-27 12:22:48 UTC |
Adds Agent Wallet section: one-time spend permission setup via keys.coinbase.com allows signOrClaim to run without browser approval each epoch. sellToHighest remains always under explicit user approval and must never be included in the agent wallet spend policy. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Summary
Adds a Base MCP plugin for flooor.fun, a continuous NFT auction platform on Base.
The plugin enables agents to:
sellToHighest— 99.5% to seller, 0.5% protocol feeIntegration type
onchain-only— no external API required. All reads usechain_rpc_request(eth_call) and all writes usesend_calls.Contract
0x2105)0xF6B2C2411a101Db46c8513dDAef10b11184c58fFKey design decisions
collectionId(), checks the user's NFT balance, and blocks with a clear message if the user holds 0 or more than 1 NFT (protocol requirement)tokenOfOwnerByIndex(user, 0)automatically — never asks the user for their token IDsignOrClaim(uint256)function; the plugin readsisSignPhase()first and routes accordingly🤖 Generated with Claude Code