Skip to Content
Index

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

ProductDescriptionGet Started
Agent SDKPython SDK for building AI agents with tools, memory, and workflowsQuick Start →
MCPModel Context Protocol with 190+ pre-built toolsTools List →

Connect

ProductDescriptionGet Started
ModelUnified LLM gateway supporting OpenAI, Anthropic, local modelsQuick Start →
User Services35 microservices for auth, payments, storage, IoT, and moreQuick Start →
DataData lake, RAG pipelines, and file processingQuick Start →

Domain

ProductDescriptionGet Started
CreativeAI creative agents for content creation, visual design, and brand managementOverview →
MarketingAI marketing agents for campaigns, SEO, audience insights, and analyticsOverview →

Deploy

ProductDescriptionGet Started
CloudProduction infrastructure with Kubernetes, APISIX, ConsulQuick Start →
OS ServicesSystem utilities for notifications, scheduling, monitoringQuick Start →
OrchPlatform orchestration with unified code index and cross-project toolingOverview →

Quick Start

Install the SDK

pip install isa-agent-sdk

Create 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 production

Full Getting Started Guide →

Pre-built Agents

Ready-to-use agents for common tasks:

AgentDescriptionTry It
isA VibeCoding assistant with file editing, terminal, and gitLearn More →
isA CreativeContent creation, writing, and brainstormingLearn More →
isA AgentGeneral-purpose assistantLearn More →

Resources

Community