Move Agent Kit
Overview
Move Agent Kit is an open-source toolkit designed to connect AI agents with Move/Aptos protocols, simplifying interactions with Move-based blockchains.
To use Move Agent Kit, install it via NPM or clone the repository from GitHub. Configure your environment with necessary API keys and set up your client to start performing blockchain operations.
- Token and NFT operations including management, transfer, minting, and burning. - Blockchain interaction capabilities such as reading data, monitoring events, and executing smart contracts. - Account management features including transaction signing and account creation.
- Building interactive wallet chatbots for blockchain operations.
- Creating multi-agent systems for complex blockchain tasks.
- Developing Telegram bots for managing user interactions with Move-based applications.
Add to your AI client
Use these steps to connect Move Agent Kit in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"move-agent-kit-mcp-server-nishu0": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-move-agent-kit-mcp-server-nishu0"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"move-agent-kit-mcp-server-nishu0": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-move-agent-kit-mcp-server-nishu0"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"move-agent-kit-mcp-server-nishu0": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-move-agent-kit-mcp-server-nishu0"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"move-agent-kit-mcp-server-nishu0": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-move-agent-kit-mcp-server-nishu0"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"move-agent-kit-mcp-server-nishu0": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-move-agent-kit-mcp-server-nishu0"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"move-agent-kit-mcp-server-nishu0": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-move-agent-kit-mcp-server-nishu0"
]
}
}
}FAQ
Can I use Move Agent Kit for any Move-based blockchain?
Yes! It is designed to work with various Move-based protocols.
Is there documentation available?
Yes! Full documentation is available at the MetaMove GitBook Documentation.
What programming language is used?
Move Agent Kit is primarily built using TypeScript.