- Graphs deployed on LangGraph Platform.
- Graphs running locally via the LangGraph Server.
LangGraph Platform
LangGraph Studio is accessed from the LangSmith UI, within the LangGraph Platform Deployments tab. For applications that are deployed on LangGraph Platform, you can access Studio as part of that deployment. To do so, navigate to the deployment in LangGraph Platform within the LangSmith UI and click the LangGraph Studio button. This will load the Studio UI connected to your live deployment, allowing you to create, read, and update the threads, assistants, and memory in that deployment.Local development server
To test your application locally using LangGraph Studio, follow the local application quickstart first.LangSmith Tracing
For local development, if you don’t want data traced to LangSmith, set
LANGSMITH_TRACING=false
in your application’s .env
file. With tracing disabled, no data leaves your local server.Browser Compatibility
Safari blocks
localhost
connections to Studio. To work around this, run the above command with --tunnel
to access Studio via a secure tunnel.- Directly navigate to the following URL:
https://smith.langchain.com/studio/?baseUrl=http://127.0.0.1:2024
. - Within LangSmith, navigate to the LangGraph Platform Deployments tab, click the LangGraph Studio button, enter
http://127.0.0.1:2024
and click Connect.
baseUrl
to match.
(Optional) Attach a debugger
For step-by-step debugging with breakpoints and variable inspection:Add this configuration to
launch.json
: