AI is the Console
Chat is the new command line. Deploy 200+ managed open source services through natural language β no dashboards, no YAML, no clicking. Just describe what you need and your AI agent provisions real infrastructure.
Eyevinn Open Source Cloud (OSC) is a managed platform for 200+ open source services, accessible via MCP server at mcp.osaas.io/mcp.
Try Instantly β No Install Needed
Experience OSC + AI in your browser. No local setup, no configuration.
Our web-based AI agent gives you instant access to all 200+ OSC services. Perfect for exploring capabilities before setting up IDE integration.
Want local dev experience?
Choose an IDE integration below for seamless development workflow.
What You Can Build
Tiered example prompts for every skill level
Beginner
Intermediate
Advanced
Copy, Paste, Deploy β Recipes for Your AI Agent
Ready-to-use prompts that build complete applications. Just paste into your AI agent and watch it work.
Build a Web Shop
Create a complete e-commerce application with product catalog, shopping cart, and PostgreSQL database.
Deploy a Streaming Service
Set up a complete video streaming pipeline with transcoding, packaging, and a web player.
Launch an AI Assistant Backend
Build a conversational AI backend with REST API, database persistence, and session caching.
Build Your First App
Go from zero to a deployed full-stack application using Claude Code and Open Source Cloud.
Start the TutorialYour AI agent does not just write code. With OSC MCP, it deploys infrastructure too β databases, applications, pipelines β all through conversation. And every service is portable open source.
Describe β Deploy
Tell your AI agent what you need. It provisions real infrastructure in seconds β no YAML, no consoles, no manual steps.
Zero Lock-In
Every service is an unmodified open source project. Move to any cloud or on-premises at any time.
163+ Services
Databases, caches, CDNs, applications, monitoring, AI tools β all available through a single MCP connection.
Production-Ready, Not Sandboxed
Other tools let you prototype in a sandbox. OSC MCP deploys real infrastructure from the start.
Start Building with AI on OSC
One command connects your AI agent to 200+ managed open source services. Your agent provisions infrastructure as you code.
Need a token? Sign up free at app.osaas.io
Instant Infrastructure
Databases, storage, queues β deployed by describing what you need.
Deploy from GitHub
Point your agent at any repo. OSC builds, deploys, and gives you a URL.
Built-in AI Architect
An expert assistant that knows every OSC service and designs your architecture.
Production from Day One
No sandbox-to-production migration. What you build is already live.
Common Questions About Building on OSC
Run a single command in your terminal: claude mcp add --transport http osc https://mcp.osaas.io/mcp. For Cursor, VS Code, or other tools, add the MCP server URL https://mcp.osaas.io/mcp in your MCP configuration with a Bearer token from your free OSC account at app.osaas.io. Once connected, your AI agent can discover and deploy any of 200+ managed open source services through natural language.
40+ MCP Tools
Access the complete OSC infrastructure through natural language
Infrastructure
Databases, storage, caching, message queues
Applications
Deploy and manage complete applications
Intelligence
AI-powered architecture planning and optimization
Ask OSC Architect
Get expert guidance on building complex architectures
Pricing for Builders
Flexible plans that grow with your projects
Free
100 tokens total
Personal
40 tokens/day
Professional
100 tokens/day
How to Connect
Choose your preferred AI tool and follow the setup instructions below.
Claude Desktop
Connect OSC to Claude Desktop app for a seamless AI assistant experience.
Setup Steps:
- 1Download Claude for Desktop for macOS or Windows
- 2Go to Settings β Connectors β "Add custom connector"
- 3Name the connector (e.g., "OSC") and enter the MCP URL
- 4Click "Connect" and authenticate through the OSC web interface
Claude Code
Connect OSC with Claude Code CLI for terminal-based AI assistance.
Setup Steps:
- 1Prerequisite: Install Node.js 18+ from nodejs.org
- 2Run the add command to register the MCP server
- 3Start Claude Code
- 4Connect to the MCP using the /mcp command
Commands
Add the MCP server:
$ claude mcp add --transport http osc https://mcp.osaas.io/mcpStart Claude Code:
$ claudeConnect to the MCP:
> /mcpAlternative: Personal Access Token
If browser authentication fails, use a personal access token from Settings/API:
{
"mcpServers": {
"osc": {
"type": "http",
"url": "https://mcp.osaas.io/mcp",
"headers": {
"Authorization": "Bearer <personal-access-token>"
}
}
}
}VS Code
Integrate OSC tools directly into your VS Code development environment.
Setup Steps:
- 1Prerequisite: Install Node.js 18+ from nodejs.org
- 2Open View β Command Palette
- 3Search for "MCP" and select "Add server"
- 4Choose HTTP transport
- 5Enter the MCP URL and name your connector
- 6Authenticate when prompted
ChatGPT
Connect ChatGPT to OSC using Developer Mode for AI-powered automation.
Setup Steps:
- 1Go to Settings β Connectors β Advanced β Developer Mode
- 2Click "Add Connector"
- 3Enter the MCP URL and name your connector (e.g., "OSC")
- 4Authenticate when prompted through the OSC web interface
Cursor
Use OSC services directly in Cursor IDE with AI-powered coding assistance.
Setup Steps:
- 1Get your Personal Access Token from app.osaas.io β Settings β API
- 2Create or edit .cursor/mcp.json (project-level) or ~/.cursor/mcp.json (global) and add the configuration shown below
- 3Restart Cursor β OSC MCP tools will appear automatically in agent mode
Configuration (.cursor/mcp.json)
// .cursor/mcp.json (project) or ~/.cursor/mcp.json (global)
{
"mcpServers": {
"osc": {
"url": "https://mcp.osaas.io/mcp",
"headers": {
"Authorization": "Bearer <your-personal-access-token>"
}
}
}
}Get your personal access token from app.osaas.io β Settings β API. Replace <your-personal-access-token> with your actual token.
Windsurf
Integrate OSC into Windsurf IDE for seamless AI-assisted development.
Setup Steps:
- 1Get your Personal Access Token from app.osaas.io β Settings β API
- 2Edit ~/.codeium/windsurf/mcp_config.json and add the configuration shown below
- 3Restart Windsurf β OSC MCP tools will appear automatically in agent mode
Configuration (~/.codeium/windsurf/mcp_config.json)
// ~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"osc": {
"serverUrl": "https://mcp.osaas.io/mcp",
"headers": {
"Authorization": "Bearer <your-personal-access-token>"
}
}
}
}Get your personal access token from app.osaas.io β Settings β API. Replace <your-personal-access-token> with your actual token.
Amazon Q CLI
Connect OSC to Amazon Q Developer CLI for AI-powered cloud development within the AWS ecosystem.
Setup Steps:
- 1Install Amazon Q Developer CLI from AWS
- 2Edit ~/.aws/amazonq/mcp.json (global) or .amazonq/mcp.json (workspace) and add the configuration shown below
- 3Authenticate through the OSC web interface when prompted
- 4Run q chat β OSC MCP tools will be available automatically
Configuration (~/.aws/amazonq/mcp.json)
// ~/.aws/amazonq/mcp.json (global) or .amazonq/mcp.json (workspace)
{
"mcpServers": {
"osc": {
"type": "http",
"url": "https://mcp.osaas.io/mcp"
}
}
}Amazon Q CLI supports OAuth-based authentication for remote MCP servers. The browser will open for OSC authentication when you first use the tools.
JetBrains AI Assistant
Use OSC tools directly in IntelliJ IDEA, WebStorm, PyCharm, and other JetBrains IDEs with AI Assistant.
Setup Steps:
- 1Requires IntelliJ 2025.1+ with AI Assistant plugin
- 2Go to Settings β Tools β AI Assistant β Model Context Protocol (MCP)
- 3Click + and choose "As JSON" to add a new MCP server
- 4Enter the MCP URL: https://mcp.osaas.io/mcp and select HTTP connection type
- 5Authenticate through the OSC web interface when prompted
Codex
Connect Codex to leverage OSC tools in your development workflow.
Setup Steps:
- 1Get your Personal Access Token from app.osaas.io β Settings β API
- 2Export it as an environment variable: export OSC_ACCESS_TOKEN=<your-token>
- 3Edit ~/.codex/config.toml and add the configuration shown below
- 4Run codex β OSC MCP tools will be available automatically
Configuration (~/.codex/config.toml)
# ~/.codex/config.toml
[mcp_servers.osc]
url = "https://mcp.osaas.io/mcp"
bearer_token_env_var = "OSC_ACCESS_TOKEN"The bearer_token_env_var field references the name of an environment variable β never embed your token directly in config files.
GitHub Actions
Give your Claude Code agent access to OSC tools in CI/CD workflows.
Setup Steps:
- 1Add your OSC personal access token as a GitHub Actions secret (e.g. OSC_ACCESS_TOKEN)
- 2Create a workflow step that writes an MCP config JSON file
- 3Pass the config to claude-code-action using --mcp-config
- 4Whitelist the OSC MCP tools in --allowedTools
Workflow Configuration (YAML)
name: Claude Code with OSC
on:
issues:
types: [opened, labeled]
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
jobs:
analyze:
if: contains(github.event.issue.labels.*.name, 'claude')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create OSC MCP Config
run: |
cat > /tmp/osc-mcp-config.json << EOF
{
"mcpServers": {
"osc": {
"type": "http",
"url": "https://mcp.osaas.io/mcp",
"headers": {
"Authorization": "Bearer ${{ secrets.OSC_ACCESS_TOKEN }}"
}
}
}
}
EOF
- uses: anthropics/claude-code-action@v1
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
claude_args: |
--mcp-config /tmp/osc-mcp-config.json
--allowedTools "mcp__osc__list-available-services,\
mcp__osc__get-service-schema,\
mcp__osc__get-service-endpoints,\
mcp__osc__list-my-services,\
mcp__osc__list-service-instances,\
mcp__osc__describe-service-instance,\
mcp__osc__create-service-instance,\
mcp__osc__delete-service-instance,\
mcp__osc__call-service-endpoint,\
mcp__osc__get-logs-for-instance,\
mcp__osc__create-database,\
mcp__osc__create-storage-bucket,\
mcp__osc__list-objects-on-bucket,\
mcp__osc__ask-osc-architect,\
mcp__osc__get-mcp-help"Store your OSC personal access token as a repository secret. Never commit tokens directly in workflow files.
Cline
Connect OSC to Cline, the popular open-source AI coding assistant for VS Code.
Setup Steps:
- 1Install the Cline extension from VS Code Marketplace
- 2Get your Personal Access Token from app.osaas.io β Settings β API
- 3Click the MCP Servers icon in Cline β Configure β Advanced MCP Settings
- 4Add the configuration shown below to cline_mcp_settings.json
- 5Restart Cline β OSC MCP tools will be available in conversations
Configuration (cline_mcp_settings.json)
// Cline MCP Settings (cline_mcp_settings.json)
{
"mcpServers": {
"osc": {
"url": "https://mcp.osaas.io/mcp",
"headers": {
"Authorization": "Bearer <your-personal-access-token>"
}
}
}
}Get your personal access token from app.osaas.io β Settings β API. Replace <your-personal-access-token> with your actual token.
Warp
Integrate OSC into Warp terminal for AI-powered infrastructure management from the command line.
Setup Steps:
- 1Install Warp from warp.dev
- 2Get your Personal Access Token from app.osaas.io β Settings β API
- 3Open Warp Settings β MCP Servers β click + Add
- 4Select URL-based server and add the configuration shown below
- 5OSC MCP tools will be available in Warp Agent mode
Warp MCP Server Configuration
// Warp MCP Server Configuration
{
"osc": {
"url": "https://mcp.osaas.io/mcp",
"headers": {
"Authorization": "Bearer <your-personal-access-token>"
}
}
}Get your personal access token from app.osaas.io β Settings β API. Replace <your-personal-access-token> with your actual token.
Host Your MCP Server on OSC
Your MCP server, production-ready in minutes. HTTPS, SSE, auto-scaling β no DevOps required.
Deploy from GitHub
Any Node.js, Python, or Wasm MCP server. Just point us to your repo.
HTTPS Endpoint Instantly
Get a public URL like https://{app}.auto.prod.osaas.io/mcp β share it with anyone.
Auto-Scaling, Zero Lock-In
Your code stays yours. Deploy anywhere, no vendor lock-in.
Connect Your AI Agent in 2 Minutes
Connect to Open Source Cloud today and unlock the full potential of open source media tools with your favorite AI assistant.
Last updated: March 2026