LangGraph Pricing and LangSmith Costs

Updated May 2026
LangGraph itself is free and open-source under the MIT license. The costs come from LangSmith, which provides tracing, observability, and managed deployment infrastructure. The free Developer tier covers small projects, the Plus tier at $39 per seat per month handles most production teams, and Enterprise pricing is custom. Self-hosting LangGraph avoids all platform fees but requires managing your own infrastructure.

LangGraph Core: Free and Open Source

The LangGraph framework library is MIT-licensed and completely free to use. You can install it via pip, build agent applications of any complexity, and deploy them to your own infrastructure without paying LangChain anything. This applies to both the Python and JavaScript versions. There are no usage limits, no feature gates, and no commercial license requirements.

This open-source model means that the framework's adoption is not limited by budget constraints. Solo developers, startups, and enterprises all use the same full-featured library. The monetization comes from the surrounding platform services that add observability, managed hosting, and team collaboration on top of the open-source core.

LangSmith Tracing Tiers

LangSmith is LangChain's observability platform that provides tracing, monitoring, and evaluation tools for LangGraph applications. It is optional but widely used because debugging agent workflows without tracing is extremely difficult in production.

Developer (Free)

The free tier includes 5,000 traces per month, 14-day data retention, one seat, basic evaluation capabilities, and community support. This is sufficient for individual developers building prototypes, running experiments, or maintaining low-traffic production applications. Once you exceed 5,000 traces in a month, tracing stops recording until the next billing cycle.

Plus ($39 per seat per month)

The Plus tier is where most production teams land. It includes 10,000 base traces per month with 14-day retention, and additional traces cost $2.50 per 1,000. You get team collaboration features, advanced evaluation tools, and email support. The per-seat pricing means a team of five engineers pays $195 per month for the platform, plus whatever trace overage they generate.

For a moderately active production application processing 100,000 traces per month, the trace overage cost would be 90,000 traces beyond the included 10,000, at $2.50 per 1,000, totaling $225 in overage. Combined with the seat fees, a five-person team processing 100,000 monthly traces would pay roughly $420 per month for LangSmith Plus.

Enterprise (Custom Pricing)

The Enterprise tier adds dedicated support, custom data retention policies, SSO and SAML integration, advanced access controls, and higher trace volume discounts. Pricing is negotiated based on team size and expected usage. Enterprise contracts typically start in the range of several thousand dollars per month and include guaranteed SLAs and priority support.

LangGraph Platform (Deployment) Costs

LangSmith Deployment, formerly called LangGraph Cloud, provides managed infrastructure for running LangGraph agents in production. Pricing is usage-based with different rates depending on your plan tier.

Developer Plan

The first 100,000 node executions are free. Beyond that, each node execution costs $0.001. A node execution is counted each time a node in your graph runs, so a single agent workflow with 10 nodes generates 10 node executions per run. For a light-traffic application running 1,000 agent workflows per day with 10 nodes each, that is 300,000 node executions per month, costing $200 for the 200,000 above the free tier.

Plus Plan

Deployment runs are billed at $0.005 each. A deployment run is a complete workflow invocation rather than individual node executions, making cost estimation simpler but potentially more expensive for short workflows. The Plus plan includes additional infrastructure features like higher concurrency limits and priority scheduling.

Self-Hosted (Free)

Self-hosting LangGraph agents avoids all platform deployment fees. You run the framework on your own servers, cloud instances, or container orchestration platform. The trade-off is that you manage scaling, monitoring, task queues, and infrastructure maintenance yourself. Many teams start with managed deployment and migrate to self-hosting as their operational maturity grows.

Deployment Options

LangSmith Deployment offers multiple hosting configurations to suit different infrastructure requirements.

Cloud SaaS is fully managed by LangChain. Your agents run on LangChain's infrastructure with automatic updates, zero maintenance, and built-in scaling. This is the simplest option but means your data passes through LangChain's servers.

Bring Your Own Cloud (BYOC) runs the LangGraph platform within your own cloud account (AWS, GCP, or Azure). LangChain manages the software, but the infrastructure and data stay in your VPC. This satisfies data residency and compliance requirements while reducing operational burden.

Self-Hosted Enterprise deploys the complete platform on your own infrastructure with no LangChain involvement in hosting. This provides maximum control and data isolation but requires internal expertise to operate.

LLM Provider Costs

In practice, the largest cost component of running LangGraph agents is not the framework or platform fees but the LLM API calls that agents make. A single agent workflow might call an LLM multiple times for reasoning, tool selection, and response generation. At current pricing for models like GPT-4o or Claude Sonnet, a complex agent run with several LLM calls can cost $0.05 to $0.50 depending on prompt and response lengths.

For a production system processing thousands of agent runs per day, LLM costs can easily reach hundreds or thousands of dollars per month, dwarfing the LangSmith and deployment fees. Teams should budget for LLM costs as the primary expense and treat platform fees as a relatively small operational overhead.

Startup Program

LangChain offers a Startup Plan with discounted rates and generous free trace allotments for early-stage companies. Eligibility typically requires being a venture-backed startup within a certain funding range. The program provides Plus-tier features at reduced pricing, helping startups build production agent systems without the full cost burden during their early growth phase.

Cost Optimization Strategies

Several approaches can reduce total costs. Use cheaper LLM models for simple tasks and reserve expensive models for complex reasoning. Implement caching to avoid redundant LLM calls for identical inputs. Design graph workflows to minimize unnecessary node executions by using conditional edges to skip nodes that are not needed for a given input. Monitor trace volumes and adjust logging granularity, since tracing every internal step generates more traces than tracing only workflow-level events.

Self-hosting eliminates platform fees entirely but introduces infrastructure management costs. For teams with existing DevOps capability, this can be the most cost-effective approach at scale. For teams without operational expertise, the managed platform's reliability and convenience often justify the fees.

Key Takeaway

LangGraph's core framework is free. Platform costs range from zero for self-hosted deployments to $39 per seat per month for LangSmith Plus. LLM API calls are typically the largest cost component, often exceeding platform fees by an order of magnitude.