Orbixio Studio
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Orbixio StudioList my channels and generate a script for my first channel about video SEO tips"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Orbixio Studio
MCP-native video script generation platform. Generate structured YouTube scripts through Claude Desktop (or any MCP client), review them, and approve before any downstream work begins.
Built as a TypeScript monorepo. No microservices, no workflow engines — just functions.
What it does today (v0)
6 MCP tools exposed over stdio:
list_channels,get_channel,generate_script,review_script,approve_script,reject_scriptStructured script output validated by zod: hooks, 5 tool entries with honest caveats, CTAs, YouTube metadata
Human-in-the-loop: scripts must be explicitly approved before any video work begins
Multi-tenant ready: every row is scoped to a userId (single-user via env var for now)
Related MCP server: MCP YouTube Intelligence
Prerequisites
Node.js 20+
pnpm 9+
PostgreSQL (local instance or Neon)
Anthropic API key
Quick Start (< 10 minutes)
1. Clone and install
git clone https://github.com/AhmedAliQadit/orbixio-studio.git
cd orbixio-studio
pnpm install2. Configure environment
cp .env.example .envEdit .env with your values:
DATABASE_URL="postgresql://user:password@localhost:5432/orbixio_studio"
ANTHROPIC_API_KEY="sk-ant-..."
ORBIXIO_USER_ID="cldev000000000000000000"3. Set up the database
# Create the database first (if local Postgres)
createdb orbixio_studio
# Run migrations
pnpm db:migrate
# Seed demo data
pnpm db:seed4. Build all packages
pnpm build5. Connect Claude Desktop
Add this to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"orbixio-studio": {
"command": "node",
"args": ["C:/ABSOLUTE/PATH/TO/orbixio-studio/packages/mcp-server/dist/index.js"],
"env": {
"DATABASE_URL": "postgresql://user:password@localhost:5432/orbixio_studio",
"ANTHROPIC_API_KEY": "sk-ant-...",
"ORBIXIO_USER_ID": "cldev000000000000000000"
}
}
}
}Replace C:/ABSOLUTE/PATH/TO with the actual path to your clone.
6. Test it
Restart Claude Desktop. You should see "orbixio-studio" in the MCP servers list. Try:
"List my channels, then generate a script about writing sales emails for the first channel."
Claude will call list_channels, then generate_script, and return a structured draft script for your review.
Project Structure
packages/
db/ Prisma schema, client, seed
core/ Pipeline logic (LLM provider, script generator, schemas)
mcp-server/ MCP server wrapping core over stdio
apps/
web/ Stubbed Next.js app (not implemented yet)Scripts
Command | Description |
| Build all packages |
| Run all unit tests |
| Run end-to-end smoke test |
| Run Prisma migrations |
| Seed demo data |
| Lint with Biome |
Stack
TypeScript, Prisma, PostgreSQL, @modelcontextprotocol/sdk, @anthropic-ai/sdk, zod, pino, vitest, Biome, pnpm workspaces.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AhmedAliQadir/orbixio-studio'
If you have feedback or need assistance with the MCP directory API, please join our Discord server