mcpbeat

Near Intents

internet-court/near-intents

Cross-chain token swap integration using NEAR Intents 1Click API. Use when building swap widgets, bridge interfaces, or multi-chain transfers across EVM, Solana, NEAR, TON, Stellar, and Tron.

15k tokens
context cost
the whole folder, loaded on every use
19
files
instructions only
1
copies elsewhere
how many repositories repackaged it
1529
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/internet-court/internet-court-skill --skill near-intents

What comes with it

57 545 bytes besides the instruction
LICENSE
references/concepts.md
rules/api-any-input-withdrawals.md
rules/api-deposit-submit.md
rules/api-quote.md
rules/api-status.md
rules/api-tokens.md
rules/deposit-evm.md
rules/deposit-near.md
rules/deposit-solana.md
rules/deposit-stellar.md
rules/deposit-ton.md
rules/deposit-tron.md
rules/intents-balance.md
rules/passive-deposit.md
rules/react-hooks.md
rules/react-swap-widget.md
rules/server-example.md

The instruction itself

7 sections, as written by the author

NEAR Intents Integration

Cross-chain token swaps via 1Click REST API. Get a quote, API provides deposit addresses, you build the deposit transaction and receive the resulting token automatically.

Quick Start - Pick Your Path

| Use Case | Start Here |

|----------|------------|

| React App | react-swap-widget.md - Example showing the pattern |

| Node.js / Script | server-example.md - Example showing the pattern |

| API Reference | api-quote.mdapi-tokens.mdapi-status.md |

| Chain-specific Deposits | deposit-{chain}.md |

Integration Flow

GET /v0/tokens → POST /v0/quote (dry) → POST /v0/quote (wet) → Deposit TX → POST /v0/deposit/submit → GET /v0/status

Rule Categories

| Priority | Category | Files |

|----------|----------|-------|

| 1 | Examples | react-swap-widget.md, server-example.md |

| 2 | API | api-quote.md, api-tokens.md, api-status.md, api-deposit-submit.md |

| 3 | Deposits | deposit-evm.md, deposit-solana.md, deposit-near.md, deposit-ton.md, deposit-tron.md, deposit-stellar.md |

| 4 | React Hooks | react-hooks.md |

| 5 | Advanced | intents-balance.md, passive-deposit.md |

Critical Knowledge

  • Use assetId from /v0/tokens - never construct manually
  • dry: true = preview only, dry: false = get deposit address (valid ~10 min)
  • Poll status until terminal: SUCCESS, FAILED, REFUNDED, INCOMPLETE_DEPOSIT
  • Chain-to-chain is default - depositType and recipientType default to chain endpoints

Index

  • Examples (HIGH)
  • react-swap-widget - Minimum viable React swap implementation with wagmi
  • server-example - Node.js script for server-side swaps
  • API Reference (CRITICAL)
  • api-tokens - Fetch supported tokens, cache result
  • api-quote - Get swap quote, dry=true for preview, dry=false for deposit address
  • api-deposit-submit - Notify API after deposit to speed up processing
  • api-status - Poll until terminal state (SUCCESS, FAILED, REFUNDED)
  • api-any-input-withdrawals - Query withdrawals for ANY_INPUT quotes
  • Chain Deposits (HIGH)
  • deposit-evm - Ethereum, Base, Arbitrum, Polygon, BSC transfers
  • deposit-solana - Native SOL and SPL token transfers
  • deposit-near - NEP-141 token transfers via wallet selector
  • deposit-ton - Native TON transfers via TonConnect
  • deposit-tron - Native TRX and TRC-20 transfers
  • deposit-stellar - Stellar transfers (MEMO REQUIRED)
  • React Hooks (MEDIUM)
  • react-hooks - Reusable hooks for tokens, quotes, status polling
  • Advanced (LOW)
  • intents-balance - Hold balances in intents.near for faster swaps
  • passive-deposit - QR code flow for manual transfers
  • References
  • concepts - Swap lifecycle, statuses, CEX warning, authentication

Resources

  • Docs: https://docs.near-intents.org/near-intents/integration/distribution-channels/1click-api
  • API Keys: https://partners.near-intents.org/
  • OpenAPI: https://1click.chaindefuser.com/docs/v0/openapi.yaml

Repackaged in 1 other repositories

same content, different owner
aiskillstore/marketplace open on GitHub →

How to use it

Copy the folder

Take internet-court/near-intents from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.