makerx-algorand-agent-mcp-server
v0.0.2
Published
This project implements an MCP server for Algorand agent interactions, available in both TypeScript and Python implementations.
Readme
Algorand agent MCP server
This project implements an MCP server for Algorand agent interactions, available in both TypeScript and Python implementations.
TypeScript Implementation
To experiment with the TypeScript implementation:
Run
npm run buildto generate the output fileCreate a
.envfile with the private key and app idAdd the MCP server to your AI setup, e.g. to prototype it manually add it to Claude Desktop with a config like this:
{ "mcpServers": { "algorand": { "command": "node", "args": ["path/to/algorand-agent-mcp-server/build/index.js"] } } }
Python Implementation
To use the Python implementation:
Set up a Python environment (Python 3.8+ recommended)
Install dependencies:
pip install -r requirements.txtCreate a
.envfile with the required parameters (use.env.templateas a guide)Run the server:
python app.pyAdd the MCP server to your AI setup, e.g. to prototype it manually add it to Claude Desktop with a config like this:
{ "mcpServers": { "algorand": { "command": "python", "args": ["path/to/algorand-agent-mcp-server/app.py"] } } }
