what is Thirdweb Mcp?
Thirdweb Mcp is a comprehensive toolkit designed for blockchain data analysis, wallet management, and AI agent interaction with blockchains, simplifying complex blockchain operations into three core components: Insight, Engine, and Nebula.
how to use Thirdweb Mcp?
To use Thirdweb Mcp, install it via pip or pipx, set your Thirdweb secret key, and run the server or use the Python SDK to interact with its features.
key features of Thirdweb Mcp?
- Insight: Multi-chain support, transaction analysis, block data exploration, smart contract event tracking, and real-time token price feeds.
- Engine: Secure wallet management, transaction creation, and smart contract interaction.
- Nebula: Natural language-powered blockchain interactions for completing tasks through simple instructions.
use cases of Thirdweb Mcp?
- Analyzing blockchain transaction data for insights.
- Managing wallets and executing transactions securely.
- Interacting with blockchains using natural language commands.
FAQ from Thirdweb Mcp?
- Can Thirdweb Mcp support multiple blockchains?
Yes! It supports multi-chain operations and provides detailed analytics across different networks.
- Is there a specific programming language required to use Thirdweb Mcp?
Primarily, it is designed for Python, but it also supports TypeScript SDK coming soon.
- How can I report security vulnerabilities?
Please email security@thirdweb.com for any security issues.
thirdweb AI
AI Agents with Onchain Intelligence
📖 Overview
thirdweb AI is thirdweb's comprehensive toolkit for blockchain data analysis, wallet management, and AI agent interaction with blockchains. It simplifies complex blockchain operations into three core components: Insight for data analysis, Engine for wallet and contract operations, and Nebula for natural language-powered blockchain interactions.
🌐 Features
Insight
Comprehensive blockchain data intelligence:
- Chains: Multi-chain support and network information
- Transactions: Transaction analysis and monitoring
- Blocks: Block data exploration and metrics
- Events: Smart contract event tracking and filtering
- Prices: Real-time token price feeds
- Tokens: Detailed token information and analytics
Engine
Core blockchain interaction capabilities:
- Wallet: Secure wallet management and transaction signing
- Read: Read operations for smart contracts and blockchain data
- Write: Transaction creation and contract interaction
Nebula
AI agent blockchain interaction:
- Natural Language Agent Action: Completing blockchain tasks through natural language instructions
🚀 Quickstart
MCP Server
Installation
### Run using uvx
THIRDWEB_SECRET_KEY=... \
uvx thirdweb-mcp
### Install and run using pipx (and run thirdweb-mcp)
pipx install thirdweb-mcp
THIRDWEB_SECRET_KEY=... \
thirdweb-mcp
More information
Python SDK
Installation
# Install core package with all framework adapters
pip install "thirdweb-ai[all]"
# Or install with specific framework adapters
pip install "thirdweb-ai[openai]" # For OpenAI Agents
pip install "thirdweb-ai[langchain]" # For LangChain
pip install "thirdweb-ai[agentkit]" # For Coinbase Agentkit
pip install "thirdweb-ai[goat]" # For GOAT SDK
# ... many more framework supported
See the list of supported framework and installation guides
Basic Usage
from thirdweb_ai import Engine, Insight, Nebula, Tool
# Initialize services
insight = Insight(secret_key=...)
nebula = Nebula(secret_key=...)
engine = Engine(...)
# Example: Create tools for AI agents
tools = [
*insight.get_tools(),
*nebula.get_tools(),
*engine.get_tools(),
# Or pick an individual tool from the services
]
# Example: Framework integration (LangChain)
from thirdweb_ai.adapters.langchain import get_langchain_tools
langchain_tools = get_langchain_tools(tools)
agent = create_tool_calling_agent(tools=langchain_tools, ...)
# Example: Framework integration (OpenAI Agents)
from thirdweb_ai.adapters.openai import get_openai_tools
openai_tools = get_openai_tools(tools)
agent = Agent(name="thirdweb Assistant", tools=tools)
# see python/examples for other framework integration
More information
TypeScript SDK
Coming soon.
📜 Documentation
For comprehensive documentation, please visit:
🚨 Security and Bug Reports
We take security seriously. If you discover a security vulnerability within thirdweb AI, please email security@thirdweb.com rather than using the issue tracker.
For non-security-related bugs, please use the GitHub issue tracker.
📧 Contact
- Website: thirdweb.com
- X: @thirdweb
- Telegram: Join our community
- Discord: Join our community
- Email: support@thirdweb.com
📝 License
thirdweb AI is licensed under the Apache-2.0 License. See the LICENSE file for details.