Build. Deploy. Manage. Scale.
Your Enterprise AI Agent Platform
Welcome & Introduction
What is MTS AI Agent Studio?
Key Features at a Glance
What makes us different
Getting Started
Account setup in 5 minutes
Dashboard Overview
Your command center
AI Agent Builder
Create your first agent
Chat Interface
Conversational AI in action
LLM Provider Integration
7+ providers supported
RAG & Knowledge Base
Upload docs, get answers
Agent Marketplace
Discover & publish agents
REST API & Integrations
Connect your stack
Billing & Plans
Flexible pricing models
Security & Compliance
Enterprise-grade protection
Deployment Options
Cloud, on-premise, hybrid
Platform Comparison
Why choose MTS
FAQ & Support
Help when you need it
MTS AI Agent Studio is an enterprise-grade, multi-tenant SaaS platform that enables organizations to build, deploy, and manage AI-powered agents without writing complex infrastructure code. Whether you need a customer support bot, a document analysis assistant, or a fully autonomous workflow agent, our platform gives you the tools to bring it to life in minutes.
Create and deploy your first AI agent in under 5 minutes with our intuitive wizard.
Choose from 7+ LLM providers including OpenAI, Claude, Gemini, DeepSeek, and more.
Multi-tenant isolation, role-based access, audit logging, and SOC 2-ready architecture.
Deploy AI agents across departments with centralized management and governance.
Embed AI capabilities into your product via our REST API and webhooks.
Access enterprise-grade AI tools at a fraction of the cost with pay-as-you-go billing.
Use our API-first approach to build custom integrations and publish agents on the marketplace.
Visual wizard to configure agent personality, capabilities, knowledge sources, and guardrails. No coding required.
Full-featured chat interface with conversation history, streaming responses, markdown rendering, and file attachments.
Upload PDFs, Word docs, or connect data sources. Agents answer questions grounded in your actual documents.
OpenAI, Anthropic Claude, Google Gemini, DeepSeek, Meta Llama, Mistral, xAI Grok, and local Ollama models.
Discover pre-built agents from the community. Publish your own agents and earn revenue.
Full programmatic access to all platform features. Generate API keys, manage agents, and query data via HTTP.
Complete organization isolation. Each tenant gets their own agents, data, billing, and user management.
Track token usage, conversation metrics, agent performance, and costs across your organization.
Usage-based pricing, subscription plans, token quotas, and organization-level billing management.
Follow these steps to go from sign-up to your first AI agent in under 5 minutes.
Visit the registration page and sign up with your email address. You'll receive a verification email to activate your account.
Start your free trial
Create or join an organization. The organization workspace isolates your agents, data, and billing from other tenants.
Navigate to Settings > LLM Providers and add your API key for at least one provider (e.g., OpenAI, Claude, or Gemini). This powers your AI agents.
Tip: You can configure multiple providers and let each agent choose its preferred model. We support OpenAI (GPT-4o, GPT-4.1), Anthropic Claude (Sonnet, Opus), Google Gemini, DeepSeek, Llama, Mistral, Grok, and local Ollama models.
Go to Agents > New Agent. Give your agent a name, description, system prompt, and select its LLM provider and model. Optionally upload documents for RAG-powered responses.
Navigate to the Chat page, select your new agent, and start a conversation. Your agent is live and ready to help!
Your dashboard provides a real-time overview of your AI agents, usage, and organization health.
The Agent Builder is a visual, no-code wizard that lets you configure every aspect of your AI agent's behavior and capabilities.
| Setting | Description | Example |
|---|---|---|
| Agent Name | Display name for identification | "Customer Support Bot" |
| Description | Purpose of the agent | "Handles tier-1 customer queries" |
| System Prompt | Instructions that define agent behavior | "You are a helpful support agent..." |
| LLM Provider | Which AI model powers the agent | OpenAI GPT-4o, Claude Sonnet |
| Temperature | Creativity vs. precision (0.0-1.0) | 0.7 for creative, 0.1 for precise |
| Max Tokens | Response length limit | 2048, 4096, 8192 |
| Knowledge Sources | Documents for RAG-powered answers | PDFs, Word docs, web URLs |
| Guardrails | Content filters and restrictions | No PII disclosure, no medical advice |
General-purpose conversational agent with optional RAG. Best for most use cases.
Domain-tuned agent with deep knowledge in a specific area. Uses specialized system prompts.
Multi-step workflow agent that can plan, execute, and iterate on complex tasks.
The chat interface is where your AI agents come to life. It supports multi-turn conversations with streaming responses, rich formatting, and context management.
MTS AI Agent Studio supports 7+ leading LLM providers. Configure API keys at the organization level and assign different models to different agents based on your needs.
| Provider | Models Available | Best For | Status |
|---|---|---|---|
| OpenAI | GPT-4o, GPT-4.1, GPT-4.1-mini | General-purpose, code generation | Active |
| Anthropic | Claude Sonnet 4, Claude Opus 4 | Long documents, analysis, writing | Active |
| Gemini 2.5 Pro, Gemini 2.5 Flash | Multimodal, large context windows | Active | |
| DeepSeek | DeepSeek-R1, DeepSeek-V3 | Cost-effective, reasoning tasks | Active |
| Meta | Llama 3.3, Llama 4 | Open-source, self-hosted options | Active |
| Mistral | Mistral Large, Mistral Small | European data residency, multilingual | Active |
| xAI | Grok-3, Grok-3 Mini | Real-time data, reasoning | Active |
| Ollama | Llama, Mistral, Phi (local) | On-premise, air-gapped, privacy | Optional |
Admins configure API keys and set default providers for the entire organization.
Each agent is assigned a specific provider and model based on its use case.
If a provider is down, agents can automatically fall back to an alternate model.
Retrieval-Augmented Generation (RAG) allows your agents to answer questions based on your actual documents, not just their training data. Upload PDFs, Word documents, text files, or connect to data sources, and your agents will ground their responses in real information.
.pdf files
Word
.docx files
Text
.txt, .md files
Web URL
Scrape & ingest
Drag-and-drop or browse to upload files to your organization's knowledge base.
Documents are automatically chunked, embedded, and indexed into the vector database (Qdrant).
Assign knowledge sources to specific agents. When a user asks a question, the agent searches relevant documents first.
Responses include citations and source references, so users can verify the information.
The Agent Marketplace is a curated catalog of pre-built AI agents that you can install with one click. Browse by category, read reviews, and deploy proven solutions instantly.
Customer Support
Ticket routing, FAQs, escalation
Sales & CRM
Lead scoring, outreach, proposals
HR & Onboarding
Employee handbook, policy Q&A
Legal & Compliance
Contract review, policy analysis
Healthcare
Patient intake, triage support
Education
Tutoring, quiz generation
Finance
Expense analysis, forecasting
Developer Tools
Code review, documentation
MTS AI Agent Studio provides a comprehensive REST API that allows you to programmatically manage agents, chat, knowledge bases, and billing. Integrate AI capabilities into your existing applications, workflows, and tools.
All API requests are authenticated using Bearer tokens (Laravel Sanctum). Generate API keys from the Settings page.
curl -X POST https://api.example.com/chat \
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{"agent_id": 1, "message": "Hello!"}'
GET /api/agents — List all agentsPOST /api/agents — Create new agentPOST /api/chat — Send chat messageGET /api/documents — List knowledge base docsPOST /api/documents/upload — Upload documentGET /api/usage — Usage statisticsGET /api/billing — Billing informationAdd a chat widget to your website with a single script tag. Visitors can chat with your agent directly.
Receive real-time notifications when conversations start, messages are sent, or agents need human escalation.
Official client libraries for Python, Node.js, and PHP. Install via pip, npm, or composer.
MTS AI Agent Studio offers flexible billing options designed to scale with your usage. Pay only for what you use, or choose a subscription plan for predictable costs.
Perfect for individuals and small teams getting started with AI agents
₹1,499/mo
or ₹1,499/mo · Save 33%
or ₹11,999/yr · Save 33%
1
Products
1
Users
0
WhatsApp/Day
500
AI Queries/Day
For growing businesses that need multiple agents and team collaboration
₹4,999/mo
or ₹4,999/mo · Save 33%
or ₹39,999/yr · Save 33%
5
Products
5
Users
0
WhatsApp/Day
5,000
AI Queries/Day
For organizations requiring unlimited scale and enterprise-grade features
₹14,999/mo
or ₹14,999/mo · Save 33%
or ₹119,999/yr · Save 33%
Unlimited
Products
Unlimited
Users
0
WhatsApp/Day
Unlimited
AI Queries/Day
| Resource | Starter | Growth | Enterprise |
|---|---|---|---|
| Extra Messages | $0.005/message | $0.003/message | Custom |
| Extra Storage (GB) | $5/GB/mo | $3/GB/mo | Custom |
| Extra Team Members | $5/member/mo | $3/member/mo | Custom |
| Marketplace Publishing | — | $29/agent/mo | $19/agent/mo |
Enterprise-grade security is at the core of every layer of the platform. Your data, your agents, and your conversations are protected by industry-leading security practices.
Multi-tenant architecture ensures complete data isolation between organizations. Your data is never mixed with other tenants.
TLS 1.3 in transit, AES-256 at rest. API keys and secrets are encrypted with application-level encryption.
Fine-grained RBAC with Super Admin, Org Admin, Manager, Member, and Viewer roles. Control who sees what.
Every action is logged with user identity, timestamp, and details. Full audit trail for compliance and forensics.
Token-based authentication (Sanctum), rate limiting, CORS policies, and request validation on all endpoints.
Choose where your data lives. Cloud regions (US, EU, Asia) or fully on-premise for maximum control.
Deploy MTS AI Agent Studio in the way that best fits your organization's infrastructure and compliance requirements.
Fully managed by MTS. Zero infrastructure overhead. Start in minutes.
Recommended for most teamsDeploy in your own data center. Full control over data and network.
Best for regulated industriesControl plane in cloud, data plane on-premise. Best of both worlds.
Enterprise flexibility| Component | Minimum | Recommended |
|---|---|---|
| CPU | 2 vCPUs | 4+ vCPUs |
| RAM | 4 GB | 8+ GB |
| Storage | 20 GB SSD | 100+ GB SSD |
| Database | MySQL 8.0 / MariaDB 10.4+ | MySQL 8.0+ |
| PHP | 8.2+ | 8.3+ |
| Vector DB | Optional (Qdrant) | Qdrant for RAG |
See how MTS AI Agent Studio compares to other AI agent platforms in the market.
| Feature | MTS AI Agent Studio | Competitor A | Competitor B |
|---|---|---|---|
| Multi-LLM Support | 7+ providers | 2-3 providers | 1-2 providers |
| RAG Engine | ✓ Built-in | ✓ | ✗ Add-on |
| Multi-Tenancy | ✓ Native | ✗ | ✗ |
| Agent Marketplace | ✓ | ✗ | ✓ |
| REST API | ✓ Full | ✓ Limited | ✓ |
| Self-Hosted Option | ✓ | ✗ | ✗ |
| On-Premise LLM | ✓ Ollama | ✗ | ✗ |
| Streaming Responses | ✓ | ✓ | ✗ |
| Role-Based Access | ✓ 5 roles | ✓ 3 roles | ✗ |
| Usage Analytics | ✓ Detailed | ✓ Basic | ✗ |
| Open Source Core | ✓ Laravel | ✗ | ✗ |
Contact our team for a personalized demo or start your free trial today.
MTS AI Agent Studio © 2026 MTS. All rights reserved.
Confidential — For authorized recipients only.