isA Platform
The complete platform for building, deploying, and scaling intelligent AI agents.
Why isA?
- End-to-End - From SDK to production deployment
- Modular - Use what you need, integrate with what you have
- Production-Ready - Battle-tested infrastructure with 35+ microservices
- Open - Built on open standards (MCP, OpenAPI, gRPC)
Platform Overview
┌─────────────────────────────────────────────────────────────────────────────┐
│ YOUR APPLICATION │
└─────────────────────────────────────────────────────────────────────────────┘
│
┌─────────────────────────────────────────────────────────────────────────────┐
│ AGENT SDK │
│ Build AI agents with Python │
└─────────────────────────────────────────────────────────────────────────────┘
│
┌───────────────┬───────────────┬───────────────┬───────────────┬─────────────┐
│ MCP │ Model │ User │ Data │ OS │
│ 190+ Tools │ LLM Gateway │ 35 Services │ Pipelines │ Utilities │
└───────────────┴───────────────┴───────────────┴───────────────┴─────────────┘
│
┌──────────────────────────────────┬──────────────────────────────────────────┐
│ DOMAIN SERVICES │ PLATFORM TOOLING │
│ Creative • Marketing │ Orch (Code Index • Project Registry) │
└──────────────────────────────────┴──────────────────────────────────────────┘
│
┌─────────────────────────────────────────────────────────────────────────────┐
│ isA CLOUD │
│ Kubernetes • APISIX • Consul • 9 gRPC Services • ArgoCD │
└─────────────────────────────────────────────────────────────────────────────┘Products
Build
| Product | Description | Get Started |
|---|---|---|
| Agent SDK | Python SDK for building AI agents with tools, memory, and workflows | Quick Start → |
| MCP | Model Context Protocol with 190+ pre-built tools | Tools List → |
Connect
| Product | Description | Get Started |
|---|---|---|
| Model | Unified LLM gateway supporting OpenAI, Anthropic, local models | Quick Start → |
| User Services | 35 microservices for auth, payments, storage, IoT, and more | Quick Start → |
| Data | Data lake, RAG pipelines, and file processing | Quick Start → |
Domain
| Product | Description | Get Started |
|---|---|---|
| Creative | AI creative agents for content creation, visual design, and brand management | Overview → |
| Marketing | AI marketing agents for campaigns, SEO, audience insights, and analytics | Overview → |
Deploy
| Product | Description | Get Started |
|---|---|---|
| Cloud | Production infrastructure with Kubernetes, APISIX, Consul | Quick Start → |
| OS Services | System utilities for notifications, scheduling, monitoring | Quick Start → |
| Orch | Platform orchestration with unified code index and cross-project tooling | Overview → |
Quick Start
Install the SDK
pip install isa-agent-sdkCreate Your First Agent
from isa_agent_sdk import Agent, query
# Simple query
async for msg in query("What is the weather in Tokyo?"):
print(msg.content, end="")
# Custom agent with tools
agent = Agent(
name="my-assistant",
model="claude-sonnet-4-20250514",
tools=["web_search", "calculator"]
)
response = await agent.run("Search for recent AI news")Deploy to Production
# Deploy with isA Cloud
isa deploy --env productionPre-built Agents
Ready-to-use agents for common tasks:
| Agent | Description | Try It |
|---|---|---|
| isA Vibe | Coding assistant with file editing, terminal, and git | Learn More → |
| isA Creative | Content creation, writing, and brainstorming | Learn More → |
| isA Agent | General-purpose assistant | Learn More → |
Resources
- Architecture Overview - How it all fits together
- API Reference - Complete API documentation
- Changelog - Latest updates and releases
- FAQ - Common questions answered