This repository contains examples of agents that use the XMTP network.
- End-to-end & compliant: Data is encrypted in transit and at rest, meeting strict security and regulatory standards.
- Open-source & trustless: Built on top of the MLS protocol, it replaces trust in centralized certificate authorities with cryptographic proofs.
- Privacy & metadata protection: Offers anonymous or pseudonymous usage with no tracking of sender routes, IPs, or device and message timestamps.
- Decentralized: Operates on a peer-to-peer network, eliminating single points of failure.
- Multi-agent: Allows multi-agent multi-human confidential communication over MLS group chats.
- gm: A simple agent that replies to all text messages with "gm".
- gpt: An example using GPT API's to answer messages.
- gated-group: Add members to a group that hold a certain NFT.
- grok: Integrate your agent with the Grok API
- gaia: Integrate with the Gaia API
- coinbase-langchain: Agent that uses a CDP for gassless USDC on base
Note
See our Cursor Rules for XMTP Agent development standards and best practices.
To run your XMTP agent, you must create a .env
file with the following variables:
WALLET_KEY= # the private key of the wallet
ENCRYPTION_KEY= # encryption key for the local database
XMTP_ENV= # local, dev, production
You can generate random xmtp keys with the following command:
yarn gen:keys <name>
Warning
Running the gen:keys
or gen:keys <name>
command will append keys to your existing .env
file.
# git clone repo
git clone https://github.com/ephemeraHQ/xmtp-agent-examples.git
# go to the folder
cd xmtp-agent-examples
# install packages
yarn
# generate random xmtp keys (optional)
yarn gen:keys
# run the example
yarn dev
Interact with the XMTP network using xmtp.chat, the official web inbox for developers.
Dev
and production
networks are hosted by XMTP, while local
network is hosted by yourself, so it's faster for development purposes.
-
- Install docker
-
- Start the XMTP service and database
./dev/up
-
- Change the .env file to use the local network
XMTP_ENV = local;