
Description
Create a new organization on a live LiteLLM proxy. Asks for org name, budget, and allowed models, then calls POST /organization/new.
SKILL.md
Add Organization
Create a new organization on a live LiteLLM proxy.
Setup
Ask for these if not already known:
LITELLM_BASE_URL — e.g. https://my-proxy.example.com
LITELLM_API_KEY — proxy admin key
API reference: https://litellm.vercel.app/docs/proxy/org_based_routing
Ask the user
- Org name (required, becomes
organization_alias) - Allowed models (required, e.g.
gpt-4o, claude-3-5-sonnet) - Max budget (optional, e.g.
500.00) - TPM / RPM limits (optional)
Run
curl -s -X POST "$BASE/organization/new" \
-H "Authorization: Bearer $KEY" \
-H "Content-Type: application/json" \
-d '{
"organization_alias": "<name>",
"models": [<models>],
"max_budget": <budget_or_null>,
"tpm_limit": <tpm_or_null>,
"rpm_limit": <rpm_or_null>
}'
Output
Show the user:
organization_id— needed for assigning teams/users to this orgorganization_alias,max_budget,models
On error show detail and the likely fix.
More skills from the litellm-skills repository
View all 21 skillsadd-agent
create AI agents on LiteLLM proxy
Jul 14AgentsAPI DevelopmentLLMMCPadd-key
generate API keys on LiteLLM proxy
Jul 14AI InfrastructureAPI DevelopmentLiteLLMadd-mcp
register MCP servers on LiteLLM proxy
Jul 14AI InfrastructureLiteLLMMCPadd-model
add models to LiteLLM proxy
Jul 14AI InfrastructureLiteLLMLLMadd-team
create new teams on LiteLLM proxy
Jul 14AI InfrastructureLLMManagementadd-user
create LiteLLM proxy users
Jul 14AI InfrastructureLLMOperations
More from LiteLLM
View publisherdelete-agent
delete AI agents from LiteLLM proxy
litellm-skills
Jul 14AgentsAI InfrastructureLiteLLMManagementdelete-key
delete API keys from LiteLLM proxy
litellm-skills
Jul 14API DevelopmentLiteLLMSecuritydelete-mcp
delete MCP servers from LiteLLM proxy
litellm-skills
Jul 14AI InfrastructureConfigurationMCPdelete-model
delete models from LiteLLM proxy
litellm-skills
Jul 14AI InfrastructureLiteLLMLLMManagementdelete-org
delete organizations from LiteLLM proxy
litellm-skills
Jul 14AI InfrastructureLiteLLM