thirdweb MCP Server A Model Context Protocol (MCP) server implementation for thirdweb services integration. This server allows you to integrate thirdweb's tools with any MCP-compatible client.
Overview thirdweb MCP provides a unified interface to access thirdweb's suite of blockchain tools and services through the standardized Model Context Protocol. It supports multiple communication transports and can be integrated with various thirdweb services:
**Nebula**: Autonomous onchain execution - real-time on-chain analysis, code generation and contract interactions **Insight**: Blockchain data analysis capabilities for real-time on-chain data **Engine**: Integration with thirdweb's backend infrastructure for contract deployments and interactions **Storage**: Decentralized storage capabilities for uploading and retrieving data via IPFS Installation Prerequisites Run with uvx Install and run with pipx Install from source Configuration The thirdweb MCP server requires configuration based on which services you want to enable:
**thirdweb Secret Key**: Required for Nebula, Insight, and Storage services. Obtain from the [thirdweb dashboard](https://thirdweb.com/dashboard). **Chain IDs**: Blockchain network IDs to connect to (e.g., 1 for Ethereum mainnet, 137 for Polygon). **Engine Configuration**: If using the Engine service, you'll need the Engine URL and authentication JWT. You can provide these through command-line options or environment variables.
Usage Command-line options Environment variables You can also configure the MCP server using environment variables:
`THIRDWEB_SECRET_KEY`: Your thirdweb API secret key `THIRDWEB_ENGINE_URL`: URL endpoint for thirdweb Engine service `THIRDWEB_ENGINE_AUTH_JWT`: Authentication JWT token for Engine `THIRDWEB_ENGINE_BACKEND_WALLET_ADDRESS`: Wallet address for Engine backend Integration with Claude Desktop To add this MCP server to Claude Desktop:
Install the MCP: `pipx install thirdweb-mcp` Create or edit the Claude Desktop configuration file at:
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
- Linux: `~/.config/Claude/claude_desktop_config.json` Add the following configuration:
```json
{
"mcpServers": {
"thirdweb-mcp": {
"command": "thirdweb-mcp",
"args": [], // add `--chain-id` optionally
"env": {
"THIRDWEB_SECRET_KEY": "your thirdweb secret key from dashboard",
"THIRDWEB_ENGINE_URL": "(OPTIONAL) your engine url",
"THIRDWEB_ENGINE_AUTH_JWT": "(OPTIONAL) your engine auth jwt",
"THIRDWEB_ENGINE_BACKEND_WALLET_ADDRESS": "(OPTIONAL) your engine backend wallet address",
},
}
}
}
``` Restart Claude Desktop for the changes to take effect. Read more on [MCP Quickstart](https://modelcontextprotocol.io/quickstart/user)
Integration with MCP clients This server can be integrated with any client that supports the Model Context Protocol:
Run the MCP server with the appropriate configuration Connect your MCP client to the server using the selected transport (stdio or SSE) Access thirdweb services through the exposed MCP tools Available Services Nebula Autonomous onchain execution and analysis:
Analyze smart contract code Contract interactions and deployments Autonomous onchain tasks execution Insight Offers blockchain data analysis capabilities:
Query on-chain data across multiple networks Analyze transactions, blocks, and smart contract events Monitor wallet activities and token movements Engine Integrates with thirdweb's backend infrastructure:
Interact with deployed contracts Manage wallet connections and transactions Storage Provides decentralized storage functionality:
Upload files, directories, and JSON data to IPFS Retrieve content from IPFS using thirdweb gateway Preserve directory structures when uploading License [Apache-2.0 License](LICENSE)
Support For questions or support, please contact [support@thirdweb.com](mailto:support@thirdweb.com) or visit [thirdweb.com](https://thirdweb.com).