Overview
MeshAgent is an end to end platform for building, deploying, and hosting AI Agents. MeshAgent integrates AI Agents and human teams in real time by bundling LLM orchestration, tool integration, real-time messaging, observability, and deployment so you can ship and share agents in minutes instead of weeks. To stay up to date with MeshAgent releases, ask questions, and share feedback with our team join our Discord Server. We also publish blogs highlighting major updates from each new release.In this guide you will learn how to:
- Create a MeshAgent account and project in MeshAgent Studio
- Install MeshAgent for Python
- Connect to your first MeshAgent Room and call a chat and voice agent into your room
Prerequisites
Before you start, make sure your machine matches the appropriate requirements. If you’ve never set up Python, pip, or uv before, follow the Machine Setup Guide first, then return here.Key Concepts
- Projects: Groups related Rooms and the Agents that serve them. It is best to create a different Project for each use case.
- Rooms: A dedicated space for humans and Agents to collaborate in real time.
- Agents: ChatBots, VoiceBots, TaskRunners, and Workers that you build and deploy with custom tools or out of the box MeshAgent tools. Once deployed, Agents are automatically available as a project service (available in all rooms in the project) or a room service (available only in the room they’re deployed to).
Setup Guide
Step 1: Create an account and project:
- In a browser, go to meshagent.com. Sign up or sign into MeshAgent Studio.
- Create a new project from MeshAgent Studio or using the MeshAgent CLI
meshagent project create my-new-project - Ensure your project has credits to start a room. Go to the Billing page to check your credits in the project. All new accounts start with $5.
Step 2: Install MeshAgent
Choose your preferred method:System-wide installation (recommended for CLI-only use)
Virtual environment installation (for development with Python SDK)
To install the CLI in a virtual environment: Ensure you are in the appropriate project folder and have activated your virtual environment. (The virtual environment is active when the terminal prompt starts withvenv.) If you need help with your machine setup check out our Machine Setup Guide for Python. Once activated, you can install all the MeshAgent packages, or exclusively the MeshAgent CLI.
Step 3: Use the MeshAgent CLI to Connect to a Project
Authenticate and activate a project.meshagent setup command you can run:
Step 4: Start an agent
Let’s call a chatbot and voicebot into a new room and talk to them in MeshAgent Studio.Step 5: Talk to your agent
- Open studio.meshagent.com
- Join the
gettingstartedsession. - In the participants tab you will see the
chatagentandvoiceagentappear. Select the agent from the participants list and begin chatting!
Ctrl+C. If you want the agents to persist, you’ll need to deploy them as a project or room service.
Tip: Mute your mic after speaking to avoid background noise triggering the voice agent.
Next Steps
- CLI Quickstart: Learn common commands for managing rooms and agents from your terminal
- ChatBot: Learn how to build a ChatBot with customizable rules and tools.
- VoiceBot: Learn how to build an interactive VoiceBot with MeshAgent.