Akash MCP Server
OfficialMentioned as a community platform for the Akash Network, with a badge linking to Discord for user support.
Used for repository hosting and integration with awesome-akash repository to retrieve SDL templates.
Required as a runtime environment for the MCP server, with version 18 or later needed to run the application.
Used as the implementation language for the Akash MCP server, providing type safety for the tools and interactions.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Akash MCP Serverdeploy a simple web server with 1 CPU and 1GB RAM"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Akash MCP Server
Akash MCP Server is a TypeScript implementation of a Model Context Protocol (MCP) server for interacting with the Akash Network.
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 for more details.
Related MCP server: SQL MCP Server
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, querying, updating, and termination
SDL (Stack Definition Language) operations
Bid management
Lease creation
Manifest deployment
Prerequisites
Node.js (v18 or later)
An Akash wallet (a mnemonic or a hex-encoded private key is required for interaction with Akash Network)
Basic knowledge of Akash Network
Installation
Clone the repository:
git clone https://github.com/akash-network/mcp.git cd mcpInstall dependencies:
npm installBuild the project:
npm run build
Usage with Claude Desktop or Cursor
Add the following to your claude_desktop_config.json or .cursor/mcp.json. See here for more details.
Make sure to replace <path to dist/index.js> with the path to the dist/index.js file you built.
{
"mcpServers": {
"Akash": {
"command": "node",
"args": ["<path to dist/index.js>"],
"env": {
"AKASH_MNEMONIC": "<your mnemonic here>", // OR "AKASH_PRIVATE_KEY": "<your 64-character hex string>"
"AKASH_RPC_URL": "https://rpc.akashnet.net:443" // optional, defaults to https://rpc.akashnet.net:443
}
}
}
}Usage
Development Mode
Run the server with the MCP inspector for development:
npm run devFor watch mode during development:
npm run dev:watchUsing 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
GetBalancesTool: Get the AKT (uakt) and other balances for a given Akash account address
GetBidsTool: Get bids for deployments
CreateDeploymentTool: Create a new deployment on Akash Network
GetDeploymentTool: Get deployment details including status, groups, and escrow account
CloseDeploymentTool: Close/terminate a deployment on Akash Network
AddFundsTool: Deposit additional AKT (uakt) into a deployment escrow account
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
UpdateDeploymentTool: Update a deployment on Akash Network
Development
Linting and Formatting
# Run linter
npm run lint
# Fix linting issues
npm run lint:fix
# Format code
npm run formatLicense
See LICENSE
Acknowledgements
awesome-akash (included as a submodule)
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA TypeScript implementation of a Model Context Protocol server that provides a frictionless framework for developers to build and deploy AI tools and prompts, focusing on developer experience with zero boilerplate and automatic tool registration.1,27014MIT
- AlicenseNot gradedqualityCmaintenanceA TypeScript implementation of a Model Context Protocol server that enables language models to securely query PostgreSQL databases, including those behind SSH bastion tunnels.101MIT
- AlicenseBqualityDmaintenanceA TypeScript server implementing the Model Context Protocol that provides secure code execution in isolated Docker containers, allowing LLM applications to safely run Python, Go, or JavaScript code snippets.12Apache 2.0
- FlicenseNot gradedqualityDmaintenanceA TypeScript server that fully implements the Model Context Protocol (MCP) standard, providing API access to Docker CLI operations like build, run, stop, and image management through compatible AI clients.
Related MCP Connectors
A Model Context Protocol server for Wix AI tools
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/akash-network/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server