Algorand MCP Implementation
Algorand Model Context Protocol (Server & Client)
Overview
Algorand MCP is a Model Context Protocol implementation designed for seamless interactions with the Algorand blockchain, providing both server and client packages for developers.
To use Algorand MCP, developers can install the server and client packages via NPM or utilize the server on Smithery for integration with AI tools. The server is fully operational, while the client is still in progress.
- Complete capabilities for Algorand blockchain interactions. - Extensive wallet management system. - Comprehensive transaction handling and blockchain state querying. - Built-in security features. - Support for integration with AI tools like Claude Desktop and Cursor.
- Integrating Algorand blockchain functionalities into applications.
- Managing wallets and signing transactions securely.
- Querying blockchain states and handling transactions efficiently.
Add to your AI client
Use these steps to connect Algorand MCP Implementation 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": {
"algorand-mcp-goplausible": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-algorand-mcp-goplausible"
]
}
}
}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": {
"algorand-mcp-goplausible": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-algorand-mcp-goplausible"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"algorand-mcp-goplausible": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-algorand-mcp-goplausible"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"algorand-mcp-goplausible": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-algorand-mcp-goplausible"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"algorand-mcp-goplausible": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-algorand-mcp-goplausible"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"algorand-mcp-goplausible": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-algorand-mcp-goplausible"
]
}
}
}FAQ
Is the client package fully functional?
No, the client package is still a work in progress, but the server package is fully operational.
What are the requirements to run Algorand MCP?
Node.js v23.6.1 or later and npm v10.2.4 or later are required.
Can I use Algorand MCP with AI development environments?
Yes, Algorand MCP can be integrated with AI tools like Claude Desktop and Cursor.