MCPcopy
hub / github.com/livekit/livekit

github.com/livekit/livekit @v1.13.2 sqlite

repository ↗ · DeepWiki ↗ · release v1.13.2 ↗
8,155 symbols 21,249 edges 365 files 598 documented · 7%
README

The LiveKit icon, the name of the repository and some sample code in the background.

LiveKit: Real-time video, audio and data for developers

LiveKit is an open source project that provides scalable, multi-user conferencing based on WebRTC. It's designed to provide everything you need to build real-time video audio data capabilities in your applications.

LiveKit's server is written in Go, using the awesome Pion WebRTC implementation.

GitHub stars Slack community Twitter Follow Ask DeepWiki GitHub release (latest SemVer) GitHub Workflow Status License

Features

Documentation & Guides

https://docs.livekit.io

Live Demos

Ecosystem

  • Agents: build real-time multimodal AI applications with programmable backend participants
  • Egress: record or multi-stream rooms and export individual tracks
  • Ingress: ingest streams from external sources like RTMP, WHIP, HLS, or OBS Studio

SDKs & Tools

Client SDKs

Client SDKs enable your frontend to include interactive, multi-user experiences.

Language Repo Declarative UI Links
JavaScript (TypeScript) client-sdk-js React docs | JS example | React example
Swift (iOS / MacOS) client-sdk-swift Swift UI docs | example
Kotlin (Android) client-sdk-android Compose docs | example | Compose example
Flutter (all platforms) client-sdk-flutter native docs | example
Unity WebGL client-sdk-unity-web docs
React Native (beta) client-sdk-react-native native
Rust client-sdk-rust

Server SDKs

Server SDKs enable your backend to generate access tokens, call server APIs, and receive webhooks. In addition, the Go SDK includes client capabilities, enabling you to build automations that behave like end-users.

Language Repo Docs
Go server-sdk-go docs
JavaScript (TypeScript) server-sdk-js docs
Ruby server-sdk-ruby
Java (Kotlin) server-sdk-kotlin
Python (community) python-sdks
PHP (community) agence104/livekit-server-sdk-php

Tools

Install

[!TIP] We recommend installing LiveKit CLI along with the server. It lets you access server APIs, create tokens, and generate test traffic.

The following will install LiveKit's media server:

MacOS

brew install livekit

Linux

curl -sSL https://get.livekit.io | bash

Windows

Download the latest release here

Getting Started

Starting LiveKit

Start LiveKit in development mode by running livekit-server --dev. It'll use a placeholder API key/secret pair.

API Key: devkey
API Secret: secret

To customize your setup for production, refer to our deployment docs

Creating access token

A user connecting to a LiveKit room requires an access token. Access tokens (JWT) encode the user's identity and the room permissions they've been granted. You can generate a token with our CLI:

lk token create \
    --api-key devkey --api-secret secret \
    --join --room my-first-room --identity user1 \
    --valid-for 24h

Test with example app

Head over to our example app and enter a generated token to connect to your LiveKit server. This app is built with our React SDK.

Once connected, your video and audio are now being published to your new LiveKit instance!

Simulating a test publisher

lk room join \
    --url ws://localhost:7880 \
    --api-key devkey --api-secret secret \
    --identity bot-user1 \
    --publish-demo \
    my-first-room

This command publishes a looped demo video to a room. Due to how the video clip was encoded (keyframes every 3s), there's a slight delay before the browser has sufficient data to begin rendering frames. This is an artifact of the simulation.

Deployment

Use LiveKit Cloud

LiveKit Cloud is the fastest and most reliable way to run LiveKit. Every project gets free monthly bandwidth and transcoding credits.

Sign up for LiveKit Cloud.

Self-host

Read our deployment docs for more information.

Building from source

Pre-requisites:

  • Go 1.23+ is installed
  • GOPATH/bin is in your PATH

Then run

git clone https://github.com/livekit/livekit
cd livekit
./bootstrap.sh
mage

Contributing

We welcome your contributions toward improving LiveKit! Please join us on Slack to discuss your ideas and/or PRs.

License

LiveKit server is licensed under Apache License v2.0.

LiveKit Ecosystem
Agents SDKsPython · Node.js
LiveKit SDKsBrowser · Swift · Android · Flutter · React Native · Rust · Node.js · Python · Unity · Unity (WebGL) · ESP32 · C++
Starter AppsPython Agent · TypeScript Agent · React App · SwiftUI App · Android App ·

Extension points exported contracts — how you extend this code

AnalyticsService (Interface)
counterfeiter:generate . AnalyticsService [4 implementers]
pkg/telemetry/analyticsservice.go
ServiceStore (Interface)
counterfeiter:generate . ServiceStore [4 implementers]
pkg/service/interfaces.go
ParticipantListener (Interface)
--------------------------------------------- counterfeiter:generate . ParticipantListener [4 implementers]
pkg/rtc/types/interfaces.go
SignalMessageWriter (Interface)
(no doc) [8 implementers]
pkg/routing/signal.go
TrackWriter (Interface)
(no doc) [18 implementers]
test/client/trackwriter.go
TemporalLayerSelector (Interface)
(no doc) [5 implementers]
pkg/sfu/videolayerselector/temporallayerselector/temporallayerselector.go
JobLoad (Interface)
(no doc) [5 implementers]
pkg/agent/testutils/server.go
Match (Interface)
(no doc) [1 implementers]
pkg/clientconfiguration/match.go

Core symbols most depended-on inside this repo

Load
called by 368
pkg/agent/testutils/server.go
Run
called by 262
test/agent.go
ID
called by 250
pkg/rtc/types/interfaces.go
Add
called by 223
pkg/sfu/utils/debounce.go
Store
called by 182
pkg/sfu/utils/downtrackspreader.go
recordInvocation
called by 169
pkg/rtc/types/typesfakes/fake_local_participant.go
String
called by 143
pkg/rtc/transport.go
GetLogger
called by 117
pkg/rtc/types/interfaces.go

Shape

Method 6,413
Function 1,024
Struct 563
Interface 92
TypeAlias 50
FuncType 13

Languages

Go100%

Modules by API surface

pkg/rtc/types/typesfakes/fake_local_participant.go841 symbols
pkg/rtc/types/interfaces.go393 symbols
pkg/rtc/participant.go211 symbols
pkg/rtc/types/typesfakes/fake_local_media_track.go202 symbols
pkg/rtc/types/typesfakes/fake_participant.go185 symbols
pkg/rtc/types/typesfakes/fake_media_track.go158 symbols
pkg/telemetry/telemetryfakes/fake_telemetry_service.go156 symbols
pkg/rtc/room.go148 symbols
pkg/sfu/downtrack.go140 symbols
pkg/rtc/transport.go120 symbols
pkg/sfu/receiver_base.go110 symbols
pkg/sfu/buffer/buffer_base.go98 symbols

Dependencies from manifests, versioned

buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/gov1.36.11-20260415201 · 1×
buf.build/go/protovalidatev1.2.0 · 1×
buf.build/go/protoyamlv0.7.0 · 1×
cel.dev/exprv0.25.2 · 1×
github.com/Microsoft/go-winiov0.6.2 · 1×
github.com/antlr4-go/antlr/v4v4.13.1 · 1×
github.com/benbjohnson/clockv1.3.5 · 1×
github.com/beorn7/perksv1.0.1 · 1×
github.com/bep/debouncev1.2.1 · 1×
github.com/cespare/xxhash/v2v2.3.0 · 1×

For agents

$ claude mcp add livekit \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact