akash network.com
akash network.com logo

Akash Network

Bridges AI agents with the Akash Network, enabling deployment and management of decentralized applications on blockchain...

Created byApr 23, 2025

Akash MCP Server

**Akash MCP Server** is a TypeScript implementation of a Model Context Protocol (MCP) server for interacting with the Akash Network.
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![X (formerly Twitter) Follow](https://img.shields.io/twitter/follow/akashnet_)](https://x.com/akashnet_ "Follow Akash Network on X") [![Discord](https://img.shields.io/badge/discord-join-7289DA.svg?logo=discord&longCache=true&style=flat)](https://discord.gg/akash "Join Akash Discord")

Note

This project is still under development and not all tools are available. We are working on adding more tools and improving the server. We are open to contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for more details.

Overview

This server provides a bridge between AI agents and the Akash Network, allowing AI models to deploy applications, create leases, manage deployments, and interact with other Akash services directly through typed tools. It implements the Model Context Protocol, making it compatible with various AI platforms and tools.

Features

  • **Wallet and Client Management**: Handles Akash wallet authentication and client initialization
  • **Certificate Management**: Manages Akash certificates
  • **Tools for Akash Interaction**: - Account address retrieval - Deployment creation and management - SDL (Stack Definition Language) operations - Bid management - Lease creation - Manifest deployment

Prerequisites

  • Node.js (v18 or later)
  • An Akash wallet (mnemonic required for interaction with Akash Network)
  • Basic knowledge of Akash Network

Installation

  1. Clone the repository: ```bash git clone https://github.com/akash-network/mcp.git cd mcp ```
  1. Install dependencies: ```bash npm install ```
  1. Build the project: ```bash npm run build ```

Usage with Claude Desktop or Cursor

Add the following to your `claude_desktop_config.json` or `.cursor/mcp.json`. See [here](https://modelcontextprotocol.io/quickstart/user) for more details.
Make sure to replace `<path to dist/index.js>` with the path to the `dist/index.js` file you built.

Usage

Development Mode

Run the server with the MCP inspector for development:
For watch mode during development:

Using the Server with AI Models

The server exposes a standard MCP interface that can be used by AI models to interact with the Akash Network. It uses the stdio transport by default, making it compatible with most MCP clients.

Available Tools

The server provides the following tools for AI agents:
  • **GetAccountAddrTool**: Retrieve your Akash account address
  • **GetBidsTool**: Get bids for deployments
  • **CreateDeploymentTool**: Create a new deployment on the Akash Network
  • **GetSDLsTool**: Get a list of available SDLs (from awesome-akash repository)
  • **GetSDLTool**: Get a specific SDL by name
  • **SendManifestTool**: Send a manifest to a provider
  • **CreateLeaseTool**: Create a lease with a provider
  • **GetServicesTool**: Get information about active services

Development

Linting and Formatting

License

See [LICENSE](LICENSE)

Acknowledgements

  • [Akash Network](https://akash.network/)
  • [Model Context Protocol](https://github.com/modelcontextprotocol/typescript-sdk)
  • [awesome-akash](https://github.com/akash-network/awesome-akash) (included as a submodule)