Connect AI Agents to Open Source Cloud via MCP
Open Source as a Service (OSaaS) is a cloud model where every service is an unmodified open source project. With the OSC MCP server, your AI agent can deploy any of 200+ OSaaS services β databases, video pipelines, media processing, AI tools β through natural language, with zero vendor lock-in.
MCP Server Endpoint
https://mcp.osaas.io/mcp
Use this endpoint with any MCP-compatible AI client. Authentication requires a Bearer token (personal access token from app.osaas.io).
Compatible AI Clients
- Claude Desktop β Add MCP server in settings
- Claude Code β Run:
claude mcp add --transport http osc https://mcp.osaas.io/mcp - VS Code (GitHub Copilot) β Configure MCP server in VS Code settings
- OpenAI Codex β Configure in
.codex/config.toml - ChatGPT β Add as MCP server in ChatGPT settings
- GitHub Actions β Pass MCP config to
anthropics/claude-code-actionvia--mcp-config
MCP Configuration (JSON)
{
"mcpServers": {
"osc": {
"type": "http",
"url": "https://mcp.osaas.io/mcp",
"headers": {
"Authorization": "Bearer <personal-access-token>"
}
}
}
}Available Capabilities
- List and search available services
- Create and manage service instances
- Create databases (PostgreSQL, MySQL, CouchDB, Valkey)
- Deploy custom applications from GitHub repositories
- Create storage buckets
- Manage secrets and configuration
- Deploy solution templates
- Ask the OSC Architect for help building solutions
Get Started
1. Create an account at app.osaas.io
2. Generate a personal access token
3. Connect your AI client using the MCP endpoint above