Skip to main content
Glama
3DawnRH

3Dawn MCP Server

by 3DawnRH

License: MIT Python MCP Live


What is this?

The 3Dawn MCP Server exposes the full 3Dawn platform to any AI assistant via the Model Context Protocol (MCP).

Connect it to Claude, ChatGPT, Cursor, or any MCP client and ask your AI to:

"Generate a cartoon robot 3D model and mint it as an NFT" "List all assets in my wallet and put the best one on the marketplace for 0.1 ETH" "What drops are active right now? How much have I earned from embeds?"

Transport: Streamable HTTP โ€” works with remote Claude.ai integrations and local clients.


๐Ÿ› ๏ธ Available Tools

๐ŸŽจ Generation

Tool

Description

generate_3d_from_text

Start a text โ†’ 3D job (Meshy AI backend)

get_generation_status

Poll a job until succeeded or failed

refine_3d_asset

Apply a refinement pass to an existing model

๐Ÿ“ฆ Assets

Tool

Description

list_my_assets

All 3D assets owned by a wallet

get_asset_details

Full details for a specific asset

browse_featured_assets

Trending / featured assets on the platform

get_embed_code

Get iframe embed code (earns $0.02/view)

get_embed_analytics

View count + earnings analytics for an asset

๐Ÿ›’ Marketplace

Tool

Description

browse_marketplace

Browse listings โ€” filter by ETH or stock payment

get_listing_details

Full details for a specific listing

๐ŸŽฐ Drops

Tool

Description

browse_drops

Browse drops by status (active / sold_out / ended)

get_drop_details

Bonding curve, slots, countdown for a specific drop

๐Ÿ‘ค User & Earnings

Tool

Description

get_user_profile

Creator stats: assets, mints, listings, drops

get_user_earnings

Detailed earnings: embed yield, sales, drops

๐Ÿ“Š Platform

Tool

Description

get_platform_stats

Live platform-wide statistics

get_activity_feed

Latest mints, sales, drops across the platform

list_available_stocks

All tokenized stocks with live prices


๐Ÿš€ Quick Start

Prerequisites

  • Python 3.11+

  • pip

Install

git clone https://github.com/3DawnRH/3dawn-mcp.git
cd 3dawn-mcp
pip install -r requirements.txt

Configure

cp .env.example .env

Edit .env:

# Required โ€” point at the live platform or your self-hosted instance
3DAWN_API_URL=https://3dawn.xyz

# Optional โ€” override the default port (8000)
# PORT=8000

โœ… No API keys needed to run the MCP server itself. The server talks to the public 3Dawn REST API.

Run

python server.py

The server listens on http://0.0.0.0:8000/mcp (Streamable HTTP transport).


๐Ÿ”Œ Connect to Claude.ai

  1. Go to Claude.ai โ†’ Settings โ†’ Integrations โ†’ Add MCP Server

  2. Enter your server URL: https://your-host:8000/mcp

  3. Click Connect

For local testing, use a tunnel:

# Using ngrok
ngrok http 8000
# Then add the ngrok URL to Claude

๐Ÿ”Œ Connect to Cursor / Local Clients

Add to your ~/.cursor/mcp.json (or equivalent):

{
  "mcpServers": {
    "3dawn": {
      "url": "http://localhost:8000/mcp"
    }
  }
}

๐Ÿ’ก Example Prompts

Once connected to Claude or another AI:

Generate a sci-fi spaceship 3D model in realistic style for my wallet 0x1234โ€ฆ
Browse the 3Dawn marketplace and find the cheapest ETH listing. Show me its 3D model.
How many total assets have been created on 3Dawn? What are the top creators earning?
List all my assets at wallet 0xABCDโ€ฆ and tell me which ones are listed for sale.
Check the embed analytics for asset ID 42 โ€” how much has it earned so far?

๐Ÿ—๏ธ Architecture

3dawn-mcp/
โ”œโ”€โ”€ server.py       # FastMCP server โ€” all 18 tools defined here
โ”œโ”€โ”€ client.py       # Async HTTP client wrapping the 3Dawn REST API
โ”œโ”€โ”€ requirements.txt
โ””โ”€โ”€ .env.example

Dependencies:

Package

Purpose

mcp[cli]

Model Context Protocol SDK

httpx

Async HTTP for API calls

python-dotenv

.env file loading


๐Ÿงช Testing Tools Manually

# Install MCP inspector
npx @modelcontextprotocol/inspector http://localhost:8000/mcp

Or use curl:

# List all tools
curl http://localhost:8000/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

๐Ÿ”ง Self-Hosting 3Dawn

To point the MCP server at your own 3Dawn instance:

3DAWN_API_URL=https://your-3dawn-instance.com

See 3dawn-app for self-hosting instructions.


๐Ÿค Contributing

See CONTRIBUTING.md. PRs welcome โ€” especially new tools!


๐Ÿ” Security

See SECURITY.md for vulnerability reporting.


๐Ÿ“„ License

MIT โ€” see LICENSE


-
license - not tested
-
quality - not tested
B
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
โ€“Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

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/3DawnRH/3dawn-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server