Use Swytchcode as the runtime for LangGraph's orchestration graph.
6
Integration steps
Graph
Orchestration-ready
Runtime
Provider support
Safe
Tool execution
CLI
Pull the manifest, set your policy, execute. No SDK sprawl, no boilerplate. Just the tool you need, right now.
npm install @swytchcode/runtime @langchain/core langgraph dotenv
swytchcode login
swytchcode get githubHow it connects
Follow these steps to connect your agent, load a toolkit, and start executing tools through Swytchcode.
Install the CLI, or use swy as a shorter alias for swytchcode.
npm install -g swytchcodeInstall the Runtime SDK together with LangGraph's dependencies.
npm install @swytchcode/runtime @langchain/core langgraph dotenvSet up a Swytchcode project in your repo.
npx swytchcode
swytchcode initInitialize the LangGraph provider and fetch the tools your graph will execute.
import { Swytchcode } from '@swytchcode/runtime'
import { LangGraphProvider } from '@swytchcode/runtime/providers/langgraph'
const swx = new Swytchcode(new LangGraphProvider())
const tools = await swx.tools.get({ toolkits: ['github'] })Build your graph with the returned tools and let the agent invoke them directly.
console.log('LangGraph tools ready:', tools.length)Tool execution stays inside Swytchcode while the graph focuses on orchestration.
node main.jsWorks with
Install the CLI and pull your first manifest in under a minute. No account required.