Getting Started
Welcome to DgiDgi AI! Get up and running in minutes — no installation required.
What is DgiDgi AI?
DgiDgi 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.dgidgi.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 DgiDgi CLI:
npm install -g @dgidgi/cli
Then authenticate:
# Opens your browser to sign in
dgidgi login
Once logged in, you can interact with your projects from the terminal:
# List your projects
dgidgi projects
# Start a chat session
dgidgi chat --project my-project
# Run an agent task
dgidgi run "Create a REST API for user management"
The CLI connects to the same DgiDgi 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 @dgidgi/sdk
import { createClient } from "@dgidgi/sdk";
const client = createClient({
baseURL: "https://api.dgidgi.ai/api/v1",
accessToken: process.env.DGIDGI_API_KEY,
});
Use it in React apps with built-in hooks:
import { useProjects, useChat } from "@dgidgi/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.dgidgi.ai |
| CLI | @dgidgi/cli | Terminal-based agent interaction and project management |
| TypeScript SDK | @dgidgi/sdk | Programmatic API access with React hooks |
| Chrome Extension | @dgidgi/chrome | Browser integration for quick agent access |
| Discord Bot | @dgidgi/discord | AI agents in your Discord server |
| REST API | — | Direct HTTP access at api.dgidgi.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 DgiDgi. 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
DgiDgi supports multiple LLM providers with intelligent routing:
| Mode | Description |
|---|---|
| Platform LLM | Use DgiDgi-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.dgidgi.ai
- Status Page: status.dgidgi.ai
- Contact Sales: dgidgi.ai/contact
- Email: support@dgidgi.ai