MCP Hub
Back to servers

SmoothSend MCP Server

Enables AI assistants to help developers integrate gasless transactions on the Aptos blockchain by providing access to documentation, code snippets, and transaction cost estimation. It facilitates interaction with the SmoothSend SDK and API through MCP-compatible tools like Cursor and Claude.

Updated
Feb 27, 2026

@smoothsend/mcp

MCP (Model Context Protocol) server for SmoothSend. Enables AI assistants in Cursor, Claude Desktop, Windsurf, and other MCP-compatible tools to help developers integrate gasless transactions on Aptos.

What it does

Once configured, AI assistants in your editor can:

  • Answer questions about the SmoothSend SDK and API
  • Generate integration code for any use case
  • Estimate monthly credit costs based on your transaction volume
  • Look up Aptos mainnet token addresses (USDC, USDT, WBTC, USDe, USD1)
  • Pull up full documentation for any section (installation, quickstart, examples, billing)

Install

npm install -g @smoothsend/mcp

Or run directly with npx (no install needed):

npx @smoothsend/mcp

Configure

Cursor

Add to ~/.cursor/mcp.json (or your project's .cursor/mcp.json):

{
  "mcpServers": {
    "smoothsend": {
      "command": "npx",
      "args": ["@smoothsend/mcp"]
    }
  }
}

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "smoothsend": {
      "command": "npx",
      "args": ["@smoothsend/mcp"]
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "smoothsend": {
      "command": "npx",
      "args": ["@smoothsend/mcp"]
    }
  }
}

Tools

ToolDescription
get_docsGet documentation for a section: overview, installation, quickstart, api-reference, examples, billing
estimate_creditsEstimate monthly credits given gas_used, gas_unit_price, apt_price_usd, and volume
get_token_addressGet Aptos mainnet asset address for USDC, USDT, WBTC, USDe, USD1
get_code_snippetGet a code snippet: wallet-adapter-setup, script-composer-usdc, fee-preview, error-handling, testnet-setup

Resources

Resources are doc pages that AI assistants can read directly:

URIContent
smoothsend://docs/overviewOverview, quick start, pricing
smoothsend://docs/installationInstallation guide
smoothsend://docs/quickstartStep-by-step quickstart
smoothsend://docs/api-referenceFull API reference
smoothsend://docs/examplesReal-world code examples
smoothsend://docs/billingPricing and credit details

Example prompts

Once configured, try asking your AI assistant:

  • "How do I add SmoothSend to my Next.js app?"
  • "Show me how to send USDC without the user needing APT"
  • "My dApp does ~5000 contract calls per month at 200 gas each. How much will SmoothSend cost?"
  • "What's the USDC asset address on Aptos mainnet?"
  • "How do I handle SmoothSend errors when credits run out?"

Development

# Install dependencies
npm install

# Build TypeScript
npm run build

# Type check
npm run typecheck

# Run locally
node dist/index.js

Links

Reviews

No reviews yet

Sign in to write a review