Labsco
Tlazypanda logo

Aptos MCP Server

โ˜… 1

from Tlazypanda

Interact with Aptos documentation and create full-stack Aptos blockchain applications.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeQuick setup

Aptos MCP Server

A Model Context Protocol (MCP) server for interacting with Aptos documentation and creating full-stack Aptos blockchain applications.

Features

  • ๐Ÿ” Browse and search Aptos documentation
  • ๐Ÿ”ง Create new Aptos projects (fullstack, contract, or client)
  • ๐Ÿงฉ Generate components for Aptos projects
  • ๐Ÿงช Test Aptos Move contracts
  • ๐Ÿ“œ Generate TypeScript ABI interfaces for Move contracts

Using with Claude Desktop

  1. Install Claude Desktop from claude.ai/download

  2. Add the Aptos MCP Server to your Claude Desktop configuration:

mcp install aptos_mcp_server.py

Or manually edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "aptos-dev": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/aptos-mcp-server",
        "run",
        "aptos_mcp_server.py"
      ]
    }
  }
}
  1. Restart Claude Desktop

Development

Run the server in development mode with the MCP Inspector:

mcp dev aptos_mcp_server.py

Example Queries

  • "Browse through the Aptos documentation"
  • "Search the Aptos docs for 'table'"
  • "Create a new Aptos fullstack project called 'nft-marketplace'"
  • "Generate a Move module for a token contract"
  • "Create a React component for wallet connection"
  • "Generate TypeScript ABI for my contract"
  • "Test my contract's withdraw function"