Getting Started
Welcome to Chyper AI! Get up and running in minutes — no installation required.
What is Chyper AI?
Chyper AI is a cloud-based multi-tenant AI agent platform. You build, deploy, and manage AI-powered applications entirely in the browser:
- AI Agents — Autonomous agents that execute tasks, write code, manage files, and integrate with external services
- Multi-Tenant — Complete workspace isolation with per-tenant data, billing, and configuration
- 200+ Tools — File management, databases, Git, deployment, media processing, and more
- MCP Integration — Connect agents to any external service via the Model Context Protocol
- Bring Your Own Keys — Use platform-provided LLM access or connect your own API keys
Quick Start
1. Sign Up
Go to console.chyper.ai and create your account:
- GitHub — Sign in with your GitHub account
- Google — Sign in with your Google account
You'll be placed in a workspace automatically. Enterprise customers can configure SSO.
2. Create a Project
From your dashboard:
- Click New Project
- Pick a template or start from scratch
- Give it a name and description
Your project comes pre-configured with a sandboxed environment, file system, and AI agent access.
3. Start a Conversation
Open your project and start chatting with the AI agent. The agent can:
- Generate and edit code in your project
- Create and manage files
- Run commands in a sandboxed terminal
- Search the web and fetch documentation
- Connect to external services via MCP servers
That's it — you're building with AI agents. No local setup needed.
Optional: Install the CLI
For terminal-based workflows, install the Chyper CLI:
npm install -g @chyper/cli
Then authenticate:
# Opens your browser to sign in
chyper login
Once logged in, you can interact with your projects from the terminal:
# List your projects
chyper projects
# Start a chat session
chyper chat --project my-project
# Run an agent task
chyper run "Create a REST API for user management"
The CLI connects to the same Chyper platform — your projects, agents, and data are shared between the browser and CLI.
Optional: Use the SDK
For programmatic access, install the TypeScript SDK:
npm install @chyper/sdk
import { createClient } from "@chyper/sdk";
const client = createClient({
baseURL: "https://api.chyper.ai/api/v1",
accessToken: process.env.CHYPER_API_KEY,
});
Use it in React apps with built-in hooks:
import { useProjects, useChat } from "@chyper/sdk";
function Dashboard() {
const { projects } = useProjects();
// ...
}
See the SDK Documentation for the full guide.
Available Clients
| Client | Package | Description |
|---|---|---|
| Web Console | — | Full-featured browser app at console.chyper.ai |
| CLI | @chyper/cli | Terminal-based agent interaction and project management |
| TypeScript SDK | @chyper/sdk | Programmatic API access with React hooks |
| Chrome Extension | @chyper/chrome | Browser integration for quick agent access |
| Discord Bot | @chyper/discord | AI agents in your Discord server |
| REST API | — | Direct HTTP access at api.chyper.ai |
Core Concepts
Workspaces & Tenants
Every organization gets an isolated workspace (tenant) with:
- Isolated data storage and databases
- Separate user management and permissions
- Independent billing and usage tracking
- Custom branding and configuration
AI Agents
Agents are the core of Chyper. They can:
- Execute multi-step workflows autonomously
- Use 200+ built-in tools (files, git, databases, deployments, etc.)
- Connect to external services via MCP servers
- Maintain conversation context and memory across sessions
- Work within governance budgets and rate limits
MCP Integration
The Model Context Protocol lets you extend agent capabilities by connecting external tool servers:
- Browse the MCP Marketplace for pre-built integrations
- Connect GitHub, Slack, Jira, databases, and more
- Build custom MCP servers for your own tools
LLM Routing
Chyper supports multiple LLM providers with intelligent routing:
| Mode | Description |
|---|---|
| Platform LLM | Use Chyper-managed API keys (default) |
| Bring Your Own Keys | Connect your own OpenAI, Anthropic, etc. keys |
| CLI Local | Run local models for offline development |
See LLM Routing for details.
Architecture Overview
Next Steps
- App Tour — Walk through the browser console
- Platform Capabilities — 200+ tool operations and integrations
- SDK Documentation — TypeScript SDK with React hooks
- API Reference — REST API endpoints
- CLI Usage — Terminal-based workflows
- Security & Compliance — Enterprise security features
Support
- Documentation: docs.chyper.ai
- Status Page: status.chyper.ai
- Contact Sales: chyper.ai/contact
- Email: support@chyper.ai