An MCP server implementation for 4EVERLAND Hosting enabling instant deployment of AI-generated code to decentralized storage networks like Greenfield, IPFS, and Arweave.
A Model Context Protocol (MCP) server implementation for 4EVERLAND Hosting enabling instant deployment of AI-generated code to decentralized storage networks like Greenfield, IPFS, and Arweave.
The 4EVERLAND Hosting MCP Server enables users to leverage AI-driven workflows to deploy code instantly to decentralized storage networks such as Greenfield, IPFS, and Arweave. Upon deployment, it provides a directly accessible webpage domain, streamlining the process of deploying and sharing decentralized applications.
Description: Deploys code to 4EVERLAND hosting platforms.
Parameter | Type | Description |
---|---|---|
code_files | Record<string, string> | Map of file paths to their content |
project_name | string | Project name (alphanumeric, underscore, hyphen; cannot start/end with hyphen) |
project_id | string (optional) | Existing project ID to deploy to (new project created if omitted) |
platform | "IPFS"|"AR"|"GREENFIELD" | Storage platform to deploy to (default: "IPFS" ) |
To connect to the MCP server from Cursor:
{
"mcpServers": {
"4ever-mcpserver": {
"command": "npx",
"args": [
"-y",
"@4everland/hosting-mcp@latest",
"serve"
],
"env": {
"TOKEN": "your-hosting-auth-token"
}
}
}
}
To connect to the MCP server from Claude Desktop:
claude_desktop_config.json
file:{
"mcpServers": {
"4ever-mcpserver": {
"command": "npx",
"args": [
"-y",
"@4everland/hosting-mcp@latest",
"serve"
],
"env": {
"TOKEN": "your-hosting-auth-token"
}
}
}
}
To run the server locally for development:
# Clone repository
git clone https://github.com/4everland/4everland-hosting-mcp.git
cd 4everland-hosting-mcp
# Install dependencies
npm install
# Build the project
npm run build
# Run the server locally
npm run serve
This project is licensed under the MIT License.