loading…
Search for a command to run...
loading…
Enables AI assistants to help developers integrate gasless transactions on the Aptos blockchain by providing access to documentation, code snippets, and transac
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.
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.
Once configured, AI assistants in your editor can:
npm install -g @smoothsend/mcp
Or run directly with npx (no install needed):
npx @smoothsend/mcp
Add to ~/.cursor/mcp.json (or your project's .cursor/mcp.json):
{
"mcpServers": {
"smoothsend": {
"command": "npx",
"args": ["@smoothsend/mcp"]
}
}
}
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"smoothsend": {
"command": "npx",
"args": ["@smoothsend/mcp"]
}
}
}
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"smoothsend": {
"command": "npx",
"args": ["@smoothsend/mcp"]
}
}
}
| Tool | Description |
|---|---|
get_docs |
Get documentation for a section: overview, installation, quickstart, api-reference, examples, billing |
estimate_credits |
Estimate monthly credits given gas_used, gas_unit_price, apt_price_usd, and volume |
get_token_address |
Get Aptos mainnet asset address for USDC, USDT, WBTC, USDe, USD1 |
get_code_snippet |
Get a code snippet: wallet-adapter-setup, script-composer-usdc, fee-preview, error-handling, testnet-setup |
Resources are doc pages that AI assistants can read directly:
| URI | Content |
|---|---|
smoothsend://docs/overview |
Overview, quick start, pricing |
smoothsend://docs/installation |
Installation guide |
smoothsend://docs/quickstart |
Step-by-step quickstart |
smoothsend://docs/api-reference |
Full API reference |
smoothsend://docs/examples |
Real-world code examples |
smoothsend://docs/billing |
Pricing and credit details |
Once configured, try asking your AI assistant:
# Install dependencies
npm install
# Build TypeScript
npm run build
# Type check
npm run typecheck
# Run locally
node dist/index.js
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"smoothsend-mcp-server": {
"command": "npx",
"args": []
}
}
}